ToolBarTextAlign Enumeration
Assembly: System.Windows.Forms (in system.windows.forms.dll)
This enumeration is used by members such as ToolBar.TextAlign.
Room is reserved for an image to be displayed on toolbar buttons. The alignment of text is in relation to the image displayed on the toolbar button. If no image is assigned to the button, the reserved space will appear to the left, or above the text displayed.
The following example creates a ToolBar control, sets some of its common properties, and adds it to a Form. Delegates are also added to the ButtonClick and ButtonDropDown events. This example assumes a ToolBar named toolBar1 and an ImageList named imageList1 have been declared.
Private Sub AddToolBar() ' Add a toolbar and set some of its properties. toolBar1 = New ToolBar() toolBar1.Appearance = System.Windows.Forms.ToolBarAppearance.Flat toolBar1.BorderStyle = System.Windows.Forms.BorderStyle.None toolBar1.Buttons.Add(Me.toolBarButton1) toolBar1.ButtonSize = New System.Drawing.Size(24, 24) toolBar1.Divider = True toolBar1.DropDownArrows = True toolBar1.ImageList = Me.imageList1 toolBar1.ShowToolTips = True toolBar1.Size = New System.Drawing.Size(292, 25) toolBar1.TabIndex = 0 toolBar1.TextAlign = System.Windows.Forms.ToolBarTextAlign.Right toolBar1.Wrappable = False ' Add handlers for the ButtonClick and ButtonDropDown events. AddHandler toolBar1.ButtonDropDown, AddressOf toolBar1_ButtonDropDown AddHandler toolBar1.ButtonClick, AddressOf toolBar1_ButtonClicked ' Add the toolbar to the form. Me.Controls.Add(toolBar1) End Sub
private void AddToolBar()
{
// Add a toolbar and set some of its properties.
toolBar1 = new ToolBar();
toolBar1.set_Appearance(System.Windows.Forms.ToolBarAppearance.Flat);
toolBar1.set_BorderStyle(System.Windows.Forms.BorderStyle.None);
toolBar1.get_Buttons().Add(this.toolBarButton1);
toolBar1.set_ButtonSize(new System.Drawing.Size(24, 24));
toolBar1.set_Divider(true);
toolBar1.set_DropDownArrows(true);
toolBar1.set_ImageList(this.imageList1);
toolBar1.set_ShowToolTips(true);
toolBar1.set_Size(new System.Drawing.Size(292, 25));
toolBar1.set_TabIndex(0);
toolBar1.set_TextAlign(System.Windows.Forms.ToolBarTextAlign.Right);
toolBar1.set_Wrappable(false);
// Add handlers for the ButtonClick and ButtonDropDown events.
toolBar1.add_ButtonDropDown(new ToolBarButtonClickEventHandler
(toolBar1_ButtonDropDown));
toolBar1.add_ButtonClick(new ToolBarButtonClickEventHandler
(toolBar1_ButtonClicked));
// Add the toolbar to the form.
this.get_Controls().Add(toolBar1);
} //AddToolBar
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.