Technical Reference > Graphics Builder Automation Interface > Metadata Functions > PropertiesSelectNextMetadata

PropertiesSelectNextMetadata

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, PropertiesMetadataName, PropertiesSelectNextMetadata, PropertiesSelectFirstMetadata, PropertiesAddMetadata, PropertiesSelectMetadataByName