ToolStripItem::ImageAlign Property

 

Gets or sets the alignment of the image on a ToolStripItem.

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

public:
property ContentAlignment ImageAlign {
	ContentAlignment get();
	void set(ContentAlignment value);
}

Property Value

Type: System.Drawing::ContentAlignment

One of the System.Drawing::ContentAlignment values. The default is MiddleLeft.

Exception Condition
InvalidEnumArgumentException

The value assigned is not one of the ContentAlignment values.

Use the ImageAlign property to get or set image alignment on a ToolStripItem. Use the TextAlign property to get or set text alignment on a ToolStripItem.

The Image, ImageAlign, ImageIndex, ImageKey, and ImageScaling properties pertain to various aspects of image handling. Use images in ToolStrip controls by setting these properties directly or by setting the run-time–only ImageList property.

Image scaling is determined by the interaction of properties in both ToolStrip and ToolStripItem, as follows:

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: