officefileapi-devexpress-dot-xtrarichedit-dot-api-dot-native-dot-table-90465af6.md
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
void EndUpdate()
Sub
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
{
tbl.EndUpdate();
}
wpf-richedit-document-api/CS/DXRichEditControlAPISample/CodeExamples/TableActions.cs#L48
{
tbl.EndUpdate();
}
winforms-richedit-tables-simple-example/CS/TablesSimpleExample/Form1.cs#L60
table.MergeCells(table[2, 0], table[6, 0]);
table.EndUpdate();
}
word-document-api-examples/CS/CodeExamples/TablesActions.cs#L138
// Finalize to modify the table.
table.EndUpdate();
#endregion #ChangeTableColor
word-document-api-table-examples/CS/Program.cs#L79
table.MergeCells(table[6, 1], table[6, 2]);
table.EndUpdate();
}
winforms-richedit-document-api/VB/RichEditAPISample/CodeExamples/Table.vb#L39
Finally
tbl.EndUpdate()
End Try
wpf-richedit-document-api/VB/DXRichEditControlAPISample/CodeExamples/TableActions.vb#L40
Finally
tbl.EndUpdate()
End Try
winforms-richedit-tables-simple-example/VB/TablesSimpleExample/Form1.vb#L51
table.MergeCells(table(2, 0), table(6, 0))
table.EndUpdate()
End Sub
word-document-api-examples/VB/CodeExamples/TablesActions.vb#L68
' Finalize to modify the table.
tbl.EndUpdate()
End Try
word-document-api-table-examples/VB/Program.vb#L62
table.MergeCells(table(6, 1), table(6, 2))
table.EndUpdate()
End Sub
See Also