Skip to main content

SubDocument.GetTableCell(DocumentPosition) Method

Obsolete. Gets a table cell in which the specified position is located.

Namespace: DevExpress.XtraRichEdit.API.Native

Assembly: DevExpress.RichEdit.v14.2.Core.dll

Declaration

[Obsolete("This method has become obsolete. Use the 'DevExpress.XtraRichEdit.API.Native.TableCollection.GetTableCell(DocumentPosition pos)' method instead.")]
TableCell GetTableCell(
    DocumentPosition pos
)
<Obsolete("This method has become obsolete. Use the 'DevExpress.XtraRichEdit.API.Native.TableCollection.GetTableCell(DocumentPosition pos)' method instead.")>
Function GetTableCell(
    pos As DocumentPosition
) As TableCell

Parameters

Name Type Description
pos DocumentPosition

A DocumentPosition object that is a position within the document.

Returns

Type Description
TableCell

A TableCell interface specifying the table cell to which the specified position belongs.

Remarks

If the specified position is inside nested tables, the GetTableCell method returns the innermost cell.

See Also