officefileapi-devexpress-dot-xtrarichedit-dot-api-dot-native-dot-tablerow-3dbf40f7.md
Deletes the current row.
Namespace : DevExpress.XtraRichEdit.API.Native
Assembly : DevExpress.RichEdit.v25.2.Core.dll
NuGet Package : DevExpress.RichEdit.Core
void Delete()
Sub Delete
The following code snippets (auto-collected from DevExpress Examples) contain references to the Delete() 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-tables-simple-example/CS/TablesSimpleExample/Form1.cs#L240
// Delete a row
table.Rows[0].Delete();
table.EndUpdate();
winforms-richedit-document-api/CS/RichEditAPISample/CodeExamples/Table.cs#L249
//Delete a row:
tbl.Rows[2].Delete();
tbl.EndUpdate();
wpf-richedit-document-api/CS/DXRichEditControlAPISample/CodeExamples/TableActions.cs#L250
tbl.BeginUpdate();
tbl.Rows[2].Delete();
tbl.Cell(1, 1).Delete();
word-document-api-examples/CS/CodeExamples/TablesActions.cs#L355
// Delete the third table row.
tbl.Rows[2].Delete();
word-document-api-table-examples/CS/Program.cs#L262
//Delete a row
tbl.Rows[0].Delete();
tbl.EndUpdate();
winforms-richedit-tables-simple-example/VB/TablesSimpleExample/Form1.vb#L194
' Delete a row
table.Rows(0).Delete()
table.EndUpdate()
winforms-richedit-document-api/VB/RichEditAPISample/CodeExamples/Table.vb#L224
'Delete a row:
tbl.Rows(CInt((2))).Delete()
tbl.EndUpdate()
wpf-richedit-document-api/VB/DXRichEditControlAPISample/CodeExamples/TableActions.vb#L221
tbl.BeginUpdate()
tbl.Rows(2).Delete()
tbl.Cell(1, 1).Delete()
word-document-api-examples/VB/CodeExamples/TablesActions.vb#L304
' Delete the third table row.
tbl.Rows(CInt((2))).Delete()
' Delete a cell.
word-document-api-table-examples/VB/Program.vb#L211
'Delete a row
tbl.Rows(0).Delete()
tbl.EndUpdate()
See Also