officefileapi-devexpress-dot-xtrarichedit-dot-api-dot-native-dot-tablerow-4e5c1538.md
Gets the first cell in a row.
Namespace : DevExpress.XtraRichEdit.API.Native
Assembly : DevExpress.RichEdit.v25.2.Core.dll
NuGet Package : DevExpress.RichEdit.Core
TableCell FirstCell { get; }
ReadOnly Property FirstCell As TableCell
| Type | Description |
|---|---|
| TableCell |
A TableCell interface specifying the first cell in a row.
|
The following code snippets (auto-collected from DevExpress Examples) contain references to the FirstCell property.
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#L28
TableRow row = tbl.Rows.Append();
TableCell cell = row.FirstCell;
string fileName = fi.Name;
wpf-richedit-document-api/CS/DXRichEditControlAPISample/CodeExamples/TableActions.cs#L32
TableRow row = tbl.Rows.Append();
TableCell cell = row.FirstCell;
string fileName = fi.Name;
winforms-richedit-document-api/VB/RichEditAPISample/CodeExamples/Table.vb#L25
Dim row As DevExpress.XtraRichEdit.API.Native.TableRow = tbl.Rows.Append()
Dim cell As DevExpress.XtraRichEdit.API.Native.TableCell = row.FirstCell
Dim fileName As String = fi.Name
wpf-richedit-document-api/VB/DXRichEditControlAPISample/CodeExamples/TableActions.vb#L27
Dim row As TableRow = tbl.Rows.Append()
Dim cell As TableCell = row.FirstCell
Dim fileName As String = fi.Name
word-document-api-examples/VB/CodeExamples/TablesActions.vb#L53
Dim row As DevExpress.XtraRichEdit.API.Native.TableRow = tbl.Rows.Append()
Dim cell As DevExpress.XtraRichEdit.API.Native.TableCell = row.FirstCell
Dim fileName As String = fi.Name
See Also