Search
Box.SetSize Method
See Also
 



Sets the size of this box.

 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 box.
height
The new height of the box.

 Remarks

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

 See Also