DWF Metadata Manager Classes (WIN)
Classes
Class |
Description |
---|
AcDMMEntityReactorInfo |
This class is the context information supplied by the OnBeginEntity() and OnEndEntity() notifiers of AcDMMReactor. You do not need to construct this class. This object is handed to the OnBeginEntity() and OnEndEntity() methods. |
AcDMMEPlotProperties |
This class is a lightweight proxy for the DWF EPlotProperties class, which is used by the DMM (DWF Metadata Manager) API to allow clients to associate entity properties with DWF geometry without linking to the DWF toolkit. This class contains the data but not the behavior of the corresponding DWF toolkit object.Note: All strings are Unicode. XML encoding is done by the DMM when the proxy object is converted to the corresponding DWF toolkit object. |
AcDMMEPlotProperty |
This class is a lightweight proxy for the DWF EPlotProperty object. It allows clients of the DMM (DWF Metadata Manager) API to add properties to an AcDMMEPlotProperties object, which in turn is used to associate properties with an entity in a DWF file without linking to the DWF toolkit.This class is a container for Unicode strings. Two of these strings, the property name and its value, are required. The other three, type, units, and category, are optional. If the strings are not already XML encoded, they are encoded when this object is converted to the corresponding DWF toolkit object.... more |
AcDMMNode |
This class is a lightweight object that holds the data needed to describe a node in a DWF Whip2D (.w2d) file. |
AcDMMReactor |
Clients must derive from and instantiate this class. These reactors are called only during Publish to DWF operations. Clients are responsible for obtaining configuration data for their metadata publication from the AcPublishReactor. |
AcDMMResourceInfo |
This class describes a resource to be added to the DWF page or global section. The resource is an existing file that will be added to the ZIP file and listed in the page descriptor as a page resource or added to the ePlot global section as a global resource. |
AcDMMSheetReactorInfo |
This class contains the context information supplied by the OnBeginSheet() and OnEndSheet() notifiers of AcDMMReactor. You do not need to construct this class. This object is handed to the OnBeginSheet() and OnEndSheet() methods. |
AcDMMWideString |
This class is a simple Unicode string class. |
AcDMMXMLAttribute |
This is a subsidiary class to AcDMMEplotProperty. You generally don't need to use this class.Normal attributes, i.e. those predefined by Dwf such as name, value, units, etc., are added to an AcDMMEplotProperty using its built-in methods such as SetUnits().Applications that define their own private namespaces and want to publish attributes belonging to those namespaces need to use this class.On the publishing side, you generally don't need to create elements of this class, and can add your elements to an AcDMMEplotProperty by using AcDMMEplotProperty::AddXMLAttribute(). You will need this class mainly to read and interpret the... more |