Version

ToolbarTextType Enumeration

Enumerates the different types of ToolbarText controls.
Syntax
'Declaration
 
Public Enum ToolbarTextType 
   Inherits System.Enum
public enum ToolbarTextType : System.Enum 
Members
MemberDescription
BreakDefines a toolbar item which makes a non-graphical row break. Associated type: ToolbarImage
CustomRepresents custom text. You must set the Text property for the text to be shown .
NotSetNo Type is associated with this object (typically because object was created using the default (paramaterless) constructor. Set the Type property to provide default values.
SpaceDefines a toolbar item which inserts a space (placeholder) between buttons. Associated type: ToolbarText
TabDefines a toolbar item which inserts a tab between buttons. Associated type: ToolbarText
Remarks

The ToolbarTextType is used to supply default values to a ToolbarText control. For example, when creating a new ToolbarText, simply pass a ToolbarTextType into the constructor to supply the object with preset values associated with that type.

This enumeration is a subset of the ToolbarItemType enumeration.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also