Enum FormatType
Enum which indicates the type of the format. How the format is connected to HTML Element.
Namespace: Syncfusion.Windows.Forms.HTMLUI
Assembly: Syncfusion.HTMLUI.Windows.dll
Syntax
public enum FormatType
Fields
Name | Description |
---|---|
Class | Format is connected by class attribute ( <td class="someStyle" > ) .someStyle { ... }. |
Default | Default Format. |
Id | Format is connected through id attribute ( <td id="someStyle" > ). #someStyle { ... } |
Merged | Format is final to the element ( after merging ). |
Name | Format is connected by equals of names <someElement> someElement { ... }. |