Search
TableNode.RedimTable Method
See Also
 





Sets new number of rows and columns for this table.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public void RedimTable (
    int cols,
    int rows
)

Visual Basic  Copy Code

Public Sub RedimTable( _
    cols As Integer, _
    rows As Integer _
)

 Parameters

cols
The new number of columns.
rows
The new number of rows.

 Remarks

This method does not preserve the old contents of table cells. After its invocation all cells are empty and columns and rows are with default sizes.

 See Also