Back to Devexpress

Table.EndUpdate() Method

officefileapi-devexpress-dot-xtrarichedit-dot-api-dot-native-dot-table-90465af6.md

latest4.6 KB
Original Source

Table.EndUpdate() Method

Unlocks the Table object after you call BeginUpdate. It also causes an immediate visual update.

Namespace : DevExpress.XtraRichEdit.API.Native

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

NuGet Package : DevExpress.RichEdit.Core

Declaration

csharp
void EndUpdate()
vb
Sub

Remarks

See Table.BeginUpdate, to learn more.

The following code snippets (auto-collected from DevExpress Examples) contain references to the EndUpdate() method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

winforms-richedit-document-api/CS/RichEditAPISample/CodeExamples/Table.cs#L44

csharp
{
    tbl.EndUpdate();
}

wpf-richedit-document-api/CS/DXRichEditControlAPISample/CodeExamples/TableActions.cs#L48

csharp
{
    tbl.EndUpdate();
}

winforms-richedit-tables-simple-example/CS/TablesSimpleExample/Form1.cs#L60

csharp
table.MergeCells(table[2, 0], table[6, 0]);
    table.EndUpdate();
}

word-document-api-examples/CS/CodeExamples/TablesActions.cs#L138

csharp
// Finalize to modify the table.
table.EndUpdate();
#endregion #ChangeTableColor

word-document-api-table-examples/CS/Program.cs#L79

csharp
table.MergeCells(table[6, 1], table[6, 2]);
    table.EndUpdate();
}

winforms-richedit-document-api/VB/RichEditAPISample/CodeExamples/Table.vb#L39

vb
Finally
    tbl.EndUpdate()
End Try

wpf-richedit-document-api/VB/DXRichEditControlAPISample/CodeExamples/TableActions.vb#L40

vb
Finally
    tbl.EndUpdate()
End Try

winforms-richedit-tables-simple-example/VB/TablesSimpleExample/Form1.vb#L51

vb
table.MergeCells(table(2, 0), table(6, 0))
    table.EndUpdate()
End Sub

word-document-api-examples/VB/CodeExamples/TablesActions.vb#L68

vb
' Finalize to modify the table.
    tbl.EndUpdate()
End Try

word-document-api-table-examples/VB/Program.vb#L62

vb
table.MergeCells(table(6, 1), table(6, 2))
    table.EndUpdate()
End Sub

See Also

BeginUpdate()

Table Interface

Table Members

DevExpress.XtraRichEdit.API.Native Namespace