Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To get a list of models stored in the image, use the GetMetaDataModels method. To get a single tag, use the GetMetaDataTag method.

Example

Code Block
 // Get the meta data for the first model 
Models = Send_Message(@Window:".OLE_PICTURE", "OLE.GetMetaDataModels") 
Tags = Send_Message(@Window:".OLE_PICTURE", "OLE.GetMetaData", Models<1>) 

 // Explicitely get all tags from the Comments model 
Tags = Send_Message(@Window:".OLE_PICTURE", "OLE.GetMetaData", "Comments")

...