Gets a single token from a parameter's delimited value.
Syntax:
Parameters:
Remarks:
A delimited value is a string containing sub strings separated by a delimiter. For example, in the parameter "FLAG=RED*WHITE*BLUE", the value is:
RED*WHITE*BLUE
where the sub strings RED, WHITE and BLUE are separated by the delimiter "*". In the example, to get the "WHITE" value, the method call would be:
sValue = object.GetValueToken(2, "*")
Samples