The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
This documentation is archived and is not being maintained.
The size of the client area of the form is the size of the form excluding the borders and the title bar. The client area of a form is the area within a form where controls can be placed. You can use this property to get the proper dimensions when performing graphics operations or when sizing and positioning controls on the form. To get the size of the entire form, use the Size property or use the individual properties Height and Width.
Note
You cannot currently bind to this property using application settings. For more information on application settings, see Application Settings Overview.
The following code example creates an event handler for the Resize event of a form. The event handler uses the ClientSize property of the form to make a Button control named button1 fill the entire client area of the form.
private:
void MyForm_Resize( Object^ sender, EventHandler^ e )
{
// Set the size of button1 to the size of the client area of the form.
button1->Size = this->ClientSize;
}