Skip to main content
A newer version of this page is available.
All docs
V19.1
.NET Framework 4.5.2+

TableCollection.Add(DocumentPosition, Int32, Int32) Method

OBSOLETE

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

Adds a new blank table to the document.

Namespace: DevExpress.XtraRichEdit.API.Native

Assembly: DevExpress.RichEdit.v19.1.Core.dll

Declaration

[Obsolete("This method has become obsolete. Use the 'Create' method instead.")]
Table Add(
    DocumentPosition pos,
    int rowCount,
    int columnCount
)

Parameters

Name Type Description
pos DocumentPosition

A DocumentPosition specifying a position at which to create a table.

rowCount Int32

An integer specifying the number of rows in a table.

columnCount Int32

An integer specifying the number of columns in a table.

Returns

Type Description
Table

A Table interface specifying a newly created table.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Add(DocumentPosition, Int32, Int32) method.

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.

See Also