Skip to main content
A newer version of this page is available.
All docs
V19.1
.NET Framework 4.5.2+
  • The page you are viewing does not exist in the .NET Standard 2.0+ platform documentation. This link will take you to the parent topic of the current section.

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.v19.1.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