Back to Devexpress

ITableBorders.InsideVertical Property

blazor-devexpress-dot-blazor-dot-richedit-dot-itableborders-9e5e415d.md

latest3.8 KB
Original Source

ITableBorders.InsideVertical Property

Returns settings of vertical borders displayed between table columns.

Namespace : DevExpress.Blazor.RichEdit

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

NuGet Package : DevExpress.Blazor.RichEdit

Declaration

csharp
ITableBorder InsideVertical { get; }

Property Value

TypeDescription
ITableBorder

An object that contains border settings.

|

Remarks

The Rich Text Editor component allows you to specify border settings for the following document elements:

TableThe Table.Borders property allows you to access table borders and obtain their settings. Pass a TableProperties object to the Table.ChangePropertiesAsync method to customize table borders.Table CellThe TableCell.Borders property allows you to access table cell borders and obtain their settings. Pass a TableCellProperties object to the TableCell.ChangePropertiesAsync method to customize cell borders.

Note

Cell border settings take priority over table border settings.

The following code example customizes settings of vertical borders displayed between table columns:

razor
<DxRichEdit @ref="richEdit" />

@code {
    DxRichEdit richEdit;
    protected override async Task OnAfterRenderAsync(bool firstRender) {
        if (firstRender)
            try {
                await InitializeDocument();
            }
            catch (TaskCanceledException) { }
        await base.OnAfterRenderAsync(firstRender);
    }

    async Task InitializeDocument() {
    /* 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 {
            var columnCount = 4;
            var rowCount = 5;
            richEdit.DocumentAPI.BeginUpdate();
            // Creates a table
            Table myTable = await richEdit.DocumentAPI.Tables.CreateAsync(0, columnCount, rowCount);
            for (int i = rowCount-1; i >= 0 ; i--)
                for (int j = columnCount-1; j >= 0 ; j--) {
                    var cellPosition = myTable.Rows[i].Cells[j].Interval.Start;
                    await richEdit.DocumentAPI.AddTextAsync(cellPosition, "sample text");
                }
            // Customizes the table
            TableBorder innerBorder = new TableBorder(BorderLineStyle.None, System.Drawing.Color.Black, 20);
            myTable = await richEdit.DocumentAPI.Tables.GetAsync(0);
            if (myTable.Borders.InsideVertical != innerBorder)
                await myTable.ChangePropertiesAsync(properties => {
                    properties.Borders.InsideVertical = innerBorder;
                });
            richEdit.DocumentAPI.EndUpdate();
        }
        catch (OperationCanceledException e) {
            Console.WriteLine($"{nameof(OperationCanceledException)} thrown with message: {e.Message}");
        }
    }
}

See Also

ITableBorders Interface

ITableBorders Members

DevExpress.Blazor.RichEdit Namespace