Using the property object you can use GetValNumber, GetValString ect. You use the named property and it returns what you're looking for. Attached is the sequence context ".bmp" showing the named property location of the information you're looking for. In order to get a picture I had to use "NextStep" while you're running the sequence you can get the information directly from "Step".
GetValString Method
Syntax
PropertyObject.GetValString( lookupString, options)
Return Type
String
Purpose
Returns the string value of the property specified by the lookupString parameter.
Remarks
For numeric properties, calling this method with the PropOption_CoerceFromNumber option does not localize the resulting string. Use GetFormattedValue to get
a localized string for a number.
Return Value
String value of the property.
Parameter Type Description
lookupString String Pass an empty string to denote the PropertyObject to which the method applies, or pass the name of a subproperty within the PropertyObject. See lookupString for more details.
options Long Pass 0 to specify the default behavior, or pass one or more PropertyOptions constants. Use the bitwise-OR operator to specify multiple options.
Example
LabWindows/CVI:
char *stringVal = NULL;
TS_PropertyGetValString(propObj, &errorInfo, "Step.Limits.String",
0, &stringVal);
...
CA_FreeMemory(stringVal);
Visual Basic (function call):
Dim stringVal As String
stringVal = propObj.GetValString("Step.Limits.String", 0)
Visual Basic (inline):
Dim stringVal As String
stringVal = propObj.Step.Limits.String