Returns the name and value of the "next" property of the Genie specified by the implementation of LibraryObjectFirstPropertyEx. By using multiple calls of this function, you can iterate through the specified genie's properties.
Syntax
LibraryObjectNextPropertyEx(PropertyName, PropertyValue)
PropertyName:
Returns the name of the active genie's next property as a string.
PropertyValue:
Returns the value of the active genie's next property as a string.
Return Value
The name and value of the Genie's next property as string values.
Note: For details on handling return and error values, see Error Handling.
Related Functions
Example
On Error Resume Next
Err.Clear
GraphicsBuilder.LibraryObjectFirstPropertyEx "include", "motors", "Motor_2_east",
PropName, PropValue
While Err.Number = 0
Debug.Print PropName, PropValue
GraphicsBuilder.LibraryObjectNextProperty PropName, PropValue
Wend
Published June 2018