officefileapi-devexpress-dot-xtrarichedit-dot-api-dot-native-dot-tablerowcollection.md
Appends a new row to the specified collection of table rows.
Namespace : DevExpress.XtraRichEdit.API.Native
Assembly : DevExpress.RichEdit.v25.2.Core.dll
NuGet Package : DevExpress.RichEdit.Core
TableRow Append()
Function Append As TableRow
| Type | Description |
|---|---|
| TableRow |
A TableRow interface specifying the appended row.
|
The following code snippets (auto-collected from DevExpress Examples) contain references to the Append() 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#L27
{
TableRow row = tbl.Rows.Append();
TableCell cell = row.FirstCell;
wpf-richedit-document-api/CS/DXRichEditControlAPISample/CodeExamples/TableActions.cs#L31
{
TableRow row = tbl.Rows.Append();
TableCell cell = row.FirstCell;
winforms-richedit-document-api/VB/RichEditAPISample/CodeExamples/Table.vb#L24
For Each fi As System.IO.FileInfo In dirinfo.GetFiles()
Dim row As DevExpress.XtraRichEdit.API.Native.TableRow = tbl.Rows.Append()
Dim cell As DevExpress.XtraRichEdit.API.Native.TableCell = row.FirstCell
wpf-richedit-document-api/VB/DXRichEditControlAPISample/CodeExamples/TableActions.vb#L26
For Each fi As FileInfo In dirinfo.GetFiles()
Dim row As TableRow = tbl.Rows.Append()
Dim cell As TableCell = row.FirstCell
word-document-api-examples/VB/CodeExamples/TablesActions.vb#L52
For Each fi As System.IO.FileInfo In dirinfo.GetFiles()
Dim row As DevExpress.XtraRichEdit.API.Native.TableRow = tbl.Rows.Append()
Dim cell As DevExpress.XtraRichEdit.API.Native.TableCell = row.FirstCell
See Also