ToolStripItem.DefaultSize Property

Definition

Gets the default size of the item.

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

Property Value

The default Size of the ToolStripItem.

Remarks

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

Notes to Inheritors

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

Applies to