Skip to main content
A newer version of this page is available.
All docs
V18.2

SubDocument.InsertTable(DocumentPosition, Int32, Int32) Method

OBSOLETE

This method has become obsolete. Use the 'Create' method instead.

Inserts a blank table with the specified number of rows and columns at the specified position.

Namespace: DevExpress.XtraRichEdit.API.Native

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

Declaration

[Obsolete("This method has become obsolete. Use the 'DevExpress.XtraRichEdit.API.Native.TableCollection.Create(DocumentPosition pos, int rowCount, int columnCount)' method instead.")]
Table InsertTable(
    DocumentPosition pos,
    int rowCount,
    int columnCount
)

Parameters

Name Type Description
pos DocumentPosition

A DocumentPosition at which a table is inserted.

rowCount Int32

An integer specifying the number of rows in a new table.

columnCount Int32

An integer specifying the number of columns in a new table.

Returns

Type Description
Table

A Table interface specifying the newly inserted table.

See Also