Back to Devexpress

TableRowCollection.Append() Method

officefileapi-devexpress-dot-xtrarichedit-dot-api-dot-native-dot-tablerowcollection.md

latest3.7 KB
Original Source

TableRowCollection.Append() Method

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

Declaration

csharp
TableRow Append()
vb
Function Append As TableRow

Returns

TypeDescription
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

csharp
{
    TableRow row = tbl.Rows.Append();
    TableCell cell = row.FirstCell;

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

csharp
{
    TableRow row = tbl.Rows.Append();
    TableCell cell = row.FirstCell;

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

vb
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

vb
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

vb
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

TableRowCollection Interface

TableRowCollection Members

DevExpress.XtraRichEdit.API.Native Namespace