Search
Table.SetSize Method
See Also
 



Sets the size of this table.

 Syntax

VB6  Copy Code

Public Sub SetSize( _
    ByVal width As Long, _
    ByVal height As Long _
)

C++  Copy Code

public:
void SetSize (
    int width,
    int height
)

 Parameters

width
The new width of the table.
height
The new height of the table.

 Remarks

Resizes the table. The upper-left corner remains on its original position.

 See Also