ToolStripItem::DisplayStyle Property

 

Gets or sets whether text and images are displayed on a ToolStripItem.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
property ToolStripItemDisplayStyle DisplayStyle {
	virtual ToolStripItemDisplayStyle get();
	virtual void set(ToolStripItemDisplayStyle value);
}

Property Value

Type: System.Windows.Forms::ToolStripItemDisplayStyle

One of the ToolStripItemDisplayStyle values. The default is ImageAndText .

Use DisplayStyle to set the values of an item's Text and Image properties while displaying only what you want. This is typically used to change only the display style when showing the same item in a different context.

The following code example demonstrates the Image, ImageAlign, DisplayStyle , and TextAlign properties for a ToolStripButton. This example is part of a larger example available in the ToolStripButton class overview.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: