General InformationMeta-properties have a number of similarities with regular properties.
Create user-defined properties to add complementary information to products. For metadata from customer systems, such as PLM environments, a Composer integration is required to extract the correct metadata. Create an XML file to describe your meta-properties (see Example XML Description below). Creation of Meta-PropertiesTo create a meta-property, click
Note: Meta-properties must have a "Meta." prefix. The prefix is added automatically when you create a meta-property from this dialog box. If you create XML to import meta-properties, ensure that the property names start with "Meta.". Deletion of Meta-PropertiesTo delete a meta-property, click
Definition
Property
Example XML DescriptionThe following example shows meta-property definitions defined in a .smgXml file.
Note: Meta-property names must have a Meta. prefix. <Server Type="PropertyDefinitions"> <MetaProperties> <Meta Name="Meta.Description" Type="String" DefaultLabel="Description" Mergeable="1" AnimAble="1" VizAble="1" VizOrder="-1"/> <Meta Name="Meta.PartNumber" Type="String" DefaultLabel="PartNumber" Mergeable="1" AnimAble="1" VizAble="1" VizOrder="-1"/> <Meta Name="Meta.Revision" Type="String" DefaultLabel="Revision" Mergeable="1" AnimAble="1" VizAble="1" VizOrder="-1"/> </MetaProperties> </Server> ...... ...... <Actor.Name Value="F0189-CAGE-E1.1"/> <Meta.PartNumber Value= "67725" /> <Meta.Revision Value=" 1.a "/> You can also store Meta-property definitions in separate .smgMeta files to facilitate reuse. For example, a .smgXml file can reference a meta-property definition file: <Server Type="PropertyDefinitions" FileName="metas.smgMeta"/> where metas.smgMeta contains: <MetaProperties> <Meta Name="Meta.Description" Type="String" DefaultLabel="Description" Mergeable="1" AnimAble="1" VizAble="1" VizOrder="-1"/> <Meta Name="Meta.PartNumber" Type="String" DefaultLabel="PartNumber" Mergeable="1" AnimAble="1" VizAble="1" VizOrder="-1"/> <Meta Name="Meta.Revision" Type="String" DefaultLabel="Revision" Mergeable="1" AnimAble="1" VizAble="1" VizOrder="-1"/> </MetaProperties> Note: The data-path mechanism is used to locate external meta-property files. See Data Paths. | ||||||||||||||||||||||||||||||