NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Control.SetClientSize

Sets the height and width of the client area of the control.

[Visual Basic]
Public Sub SetClientSize( _
   ByVal x As Integer, _
   ByVal y As Integer _
)
[C#]
public void SetClientSize(
   int x,
   int y
);
[C++]
public: void SetClientSize(
   int x,
   int y
);
[JScript]
public function SetClientSize(
   x : int,
   y : int
);

Parameters

x
An integer that represents the client area width.
y
An integer that represents the client area height.

See Also

Control Class | Control Members | System.WinForms Namespace