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