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!

Form.SetClientSizeCore

Sets the clientSize of the form. This will adjust the bounds of the form to make the clientSize the requested size.

[Visual Basic]
Overrides Protected Sub SetClientSizeCore( _
   ByVal x As Integer, _
   ByVal y As Integer _
)
[C#]
protected override void SetClientSizeCore(
   int x,
   int y
);
[C++]
protected: override void SetClientSizeCore(
   int x,
   int y
);
[JScript]
protected override function SetClientSizeCore(
   x : int,
   y : int
);

Parameters

x
Requested width of the client region
y
Requested height of the client region

See Also

Form Class | Form Members | System.WinForms Namespace | ClientSize