CGXProperties::GetTokenArgs
CString GetTokenArgs(CString& sRest);
sRest
A reference to the remaining cell text string. GetTokenArgs will remove any found arguments from the string (if any) and return them.
Return Value
Returns the argument-string for a token, if any. If there are no arguments, an empty string is returned.
Remarks
When specifying tokens in the header/footer cells, you can pass a string as argument to the token, as for example $d{%h:%m}.
If the $d token is processed (with SubstTokenText), this method will be called to determine if there is an argument following the token. If any, it will be returned as in the example: “%h:%m”.
Control-Factory Specific ->
This method has been implemented using the abstraction mechanism as discussed in the chapter "Reducing the size of your application" in the user's guide. A call to the ImplementPrinting method from within the control factory class' InitializeGridComponents method will make the concrete implementation of this method available to your application.
If no concrete implementation is available this method returns an empty string. No action is performed.
END Control-Factory Specific
See Also
CGXProperties::SubstTokenText CGXProperties::AddToken