Skip to main content

SubDocument.InsertTable(DocumentPosition, Int32, Int32) Method

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

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.Create(DocumentPosition pos, int rowCount, int columnCount)' method instead.")]
Table InsertTable(
    DocumentPosition pos,
    int rowCount,
    int columnCount
)
<Obsolete("This method has become obsolete. Use the 'DevExpress.XtraRichEdit.API.Native.TableCollection.Create(DocumentPosition pos, int rowCount, int columnCount)' method instead.")>
Function InsertTable(
    pos As DocumentPosition,
    rowCount As Integer,
    columnCount As Integer
) As Table

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