Version

ToolbarButtonType Enumeration

Enumerates the different types of ToolbarButton controls.
Syntax
'Declaration
 
Public Enum ToolbarButtonType 
   Inherits System.Enum
public enum ToolbarButtonType : System.Enum 
Members
MemberDescription
BoldDefines a toolbar button which applies bold formatting. Associated type: ToolbarButton
BringForwardDefines a toolbar item which increases the z-index of an HTML element. Associated type: ToolbarButton
CleanWordDefines a toolbar button which cleans extranous MS Word tags from the content in the editor. Associated type: ToolbarButton
CopyDefines a toolbar button which copies selected text. Associated type: ToolbarButton
CustomRepresents a custom button. The button will not do anything client side unless you provide some values for the properties of the object.
CutDefines a toolbar button which can cut selected text. Associated type: ToolbarButton
IndentDefines a toolbar button which indents text. Associated type: ToolbarButton
InsertLinkDefines a toolbar button which raises an insert link modal box. Associated type: ToolbarButton
ItalicDefines a toolbar button which applies italic formatting. Associated type: ToolbarButton
JustifyCenterDefines a toolbar button which centers justify text. Associated type: ToolbarButton
JustifyFullDefines a toolbar button which justifies text. Associated type: ToolbarButton
JustifyLeftDefines a toolbar button which left justifies text. Associated type: ToolbarButton
JustifyRightDefines a toolbar button which right justifies text. Associated type: ToolbarButton
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.
OrderedListDefines a toolbar button which formats the selected text as an ordered list. Associated type: ToolbarButton
OutdentDefines a toolbar button which outdents text. Associated type: ToolbarButton
PasteDefines a toolbar button which pastes the item on the clipboard. Associated type: ToolbarButton
PasteHtmlDefines a toolbar button which pastes the item on the clipboard while stripping HTML tags. Associated type: ToolbarButton
PreviewDefines a toolbar button which displays a preview dialog. Associated type: ToolbarButton
PrintDefines a toolbar button which sends the content of the WebHtmlEditor to the printer. Associated type: ToolbarButton
RedoDefines a toolbar button which redoes the last operation. Associated type: ToolbarButton
RemoveLinkDefines a toolbar button which removes a link. Associated type: ToolbarButton
SaveDefines a toolbar button which raises a postback to the server. Associated type: ToolbarButton
SendBackwardDefines a toolbar button which decreases the z-index of an HTML element. Associated type: ToolbarButton
StrikethroughDefines a toolbar button which places a strikethrough through text. Associated type: ToolbarButton
SubscriptDefines a toolbar button which applies subscript formatting. Associated type: ToolbarButton
SuperscriptDefines a toolbar button which applies superscript formatting. Associated type: ToolbarButton
ToggleBordersDefines a toolbar button which toggles whether table borders are shown. Associated type: ToolbarButton
TogglePositioningDefines a toolbar button which toggles HTML elements between absolute and relative positioning: Associated type: ToolbarButton
UnderlineDefines a toolbar button which applies underline formatting. Associated type: ToolbarButton
UndoDefines a toolbar button which undoes an operation. Associated type: ToolbarButton
UnorderedListDefines a toolbar button which formats the selected text as an unordered list. Associated type: ToolbarButton
WordCountDefines a toolbar button which displays a count of words and characters when clicked. Associated type: ToolbarButton
Remarks

The ToolbarButtonType is used to supply default values to a ToolbarButton. For example, when creating a new ToolbarButton, simply pass a ToolbarButtonType 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