Back to Devexpress

SubDocument.Type Property

blazor-devexpress-dot-blazor-dot-richedit-dot-subdocument-d98674f5.md

latest1.6 KB
Original Source

SubDocument.Type Property

Returns the sub-document type.

Namespace : DevExpress.Blazor.RichEdit

Assembly : DevExpress.Blazor.RichEdit.v25.2.dll

NuGet Package : DevExpress.Blazor.RichEdit

Declaration

csharp
public SubDocumentType Type { get; }

Property Value

TypeDescription
SubDocumentType

The sub-document type.

|

Available values:

NameDescription
Main

The main sub-document.

| | Header |

A header.

| | Footer |

A footer.

| | TextBox |

A text box.

|

Remarks

razor
<DxRichEdit @bind-Selection="@selection" @ref="@richEdit" />

@code {
    DxRichEdit richEdit;
    Selection selection;
    @* ... *@
    /* Surround the code that contains an asynchronous operation with a try-catch block to handle
    the OperationCanceledException. This exception is thrown when an asynchronous operation is canceled. */
        try {
        @* ... *@
            // Checks whether the main sub-document is active
            if (selection.ActiveSubDocument.Type == SubDocumentType.Main)
            @* ... *@
        }
        catch (OperationCanceledException e) {
            Console.WriteLine($"{nameof(OperationCanceledException)} thrown with message: {e.Message}");
        }
}

See Also

SubDocument Class

SubDocument Members

DevExpress.Blazor.RichEdit Namespace