|
ReaderSvgNamedObjectsSourceType Enumeration |
Enum that defines the available sources for the object's name.
Namespace:
Ab2d
Assembly:
Ab2d.ReaderSvg (in Ab2d.ReaderSvg.dll) Version: 7.1.7295.1040
Syntax public enum NamedObjectsSourceType
Members
| Member name | Value | Description |
---|
| Auto | 0 |
Automatically tries to define the source of the name with checking which application created the svg file - for example for files created in Microsoft Visio the TitleIfExist is used internally.
|
| Id | 1 |
Name is get from svg element's id.
|
| Title | 2 |
Name is get from svg element's title child element (useful for Microsoft Visio or other applications that set title).
|
| TitleIfExist | 3 |
Name is get from svg element's title child element. If the title child element does not exist the element's id is used for the name (useful for Microsoft Visio or other applications that set title).
|
| InkscapeLabel | 4 |
Name is get from the Label set in Inkscape (written to inkscape:label attribute). Note that the leading hash '#' is removed from the name.
|
See Also