Returns the name and value of the active Genie's first property. Can be used with LibraryObjectNextProperty to step through a genie's properties.
Syntax
LibraryObjectFirstProperty(PropertyName, PropertyValue)
PropertyName:
Returns the name of the active genie's first property as a string.
PropertyValue:
Returns the value of the active genie's first property as a string.
Return Value
The name and value of the Genie's first property as string values
Note: For details on handling return and error values, see Error Handling.
Related Functions
LibraryObjectPlace, LibraryObjectNextProperty, LibraryObjectPutProperty, LibraryObjectName
Example
On Error Resume Next
Err.Clear
GraphicsBuilder.LibraryObjectFirstProperty PropName, PropValue
While Err.Number = 0
Debug.Print PropName, PropValue
GraphicsBuilder.LibraryObjectNextProperty PropName, PropValue
Wend