ToolStripControlHost.DefaultSize Property

Definition

Gets the default size of the control.

protected:
 virtual property System::Drawing::Size DefaultSize { System::Drawing::Size get(); };
protected override System.Drawing.Size DefaultSize { get; }
member this.DefaultSize : System.Drawing.Size
Protected Overrides ReadOnly Property DefaultSize As Size

Property Value

The default Size of the control.

Remarks

The DefaultSize property represents the Size of the control when it is initially created. If AutoSize is true, the control is sized automatically in accordance with the ToolStrip orientation. You can manually adjust the size of the control by setting its AutoSize property value to false.

Note

In order to maintain better performance, you should not set the Size of a control in its constructor. The preferred method is to override the DefaultSize property.

Notes to Inheritors

When overriding the DefaultSize property in a derived class, it is preferable to return a Size with the desired dimensions rather than overriding all the implementation.

Applies to