PropertiesSelectNextMetadata
- Last UpdatedJul 13, 2023
- 1 minute read
Selects the next metadata entry from the properties of the current object.
Syntax
PropertiesSelectNextMetadata()
Return Value
0 (zero) if successful, otherwise an error is returned.
Example
Print metadata entries in the current object properties:
On Error Resume Next
Err.Clear()
GraphicsBuilder.PropertiesSelectFirstMetadata()
While (Err.Number = 0)
Console.Out.WriteLine(GraphicsBuilder.PropertiesMetadataName)
GraphicsBuilder.PropertiesSelectNextMetadata()
End While
Related Functions
PropertiesMetadataValue, , PropertiesSelectNextMetadata, PropertiesSelectFirstMetadata, PropertiesAddMetadata, PropertiesSelectMetadataByName