HtmlEdit.SelectedTextHeadingLevel Property
Gets or sets the heading type of the selected/under caret text. This is a bindable property.
Namespace: DevExpress.Maui.HtmlEditor
Assembly: DevExpress.Maui.HtmlEditor.dll
NuGet Package: DevExpress.Maui.HtmlEditor
Declaration
public HtmlHeadingLevel? SelectedTextHeadingLevel { get; set; }
Property Value
Type | Description |
---|---|
Nullable<HtmlHeadingLevel> | The heading type of the selected/under caret text. |
Available values:
Name | Description |
---|---|
NormalText | The text is not a header. |
Heading1 | The highest level of heading. |
Heading2 | Subheading of Heading1. |
Heading3 | Subheading of Heading2. |
Heading4 | Subheading of Heading3. |
Heading5 | Subheading of Heading4. |
Heading6 | Subheading of Heading5. |
See Also