WindowsUIButton(String, Image, Int32, ImageLocation, ButtonStyle, String, Boolean, Int32, Boolean, SuperToolTip, Int32) Constructor
Initializes a new instance of the WindowsUIButton class with the specified settings.
Namespace: DevExpress.XtraBars.Docking2010
Assembly: DevExpress.XtraBars.v20.2.dll
Declaration
[EditorBrowsable(EditorBrowsableState.Never)]
public WindowsUIButton(
string caption,
Image image,
int imageIndex,
ImageLocation imageLocation,
ButtonStyle style,
string toolTip,
bool useCaption,
int visibleIndex,
bool enabled,
SuperToolTip superTip,
int groupIndex
)
<EditorBrowsable(EditorBrowsableState.Never)>
Public Sub New(
caption As String,
image As Image,
imageIndex As Integer,
imageLocation As ImageLocation,
style As ButtonStyle,
toolTip As String,
useCaption As Boolean,
visibleIndex As Integer,
enabled As Boolean,
superTip As SuperToolTip,
groupIndex As Integer
)
Parameters
Name | Type | Description |
---|---|---|
caption | String | A String value that is the newly created WindowsUIButton's caption. |
image | Image | An Image that is the newly created WindowsUIButton's icon. |
imageIndex | Int32 | An Int32 value that specifies an image within the IButtonProperties.Images collection as the newly created WindowsUIButton's icon. |
imageLocation | DevExpress.XtraBars.Docking2010.ImageLocation | An ImageLocation enumerator value that specifies the position of the newly created WindowsUIButton's icon relative to this button's text. |
style | ButtonStyle | A ButtonStyle enumerator value specifying whether the newly created WindowsUIButton is a regular (push) or check button. |
toolTip | String | A String value that is the WindowsUIButton's tool-tip. |
useCaption | Boolean | true if the WindowsUIButton should display its caption; otherwise, false. |
visibleIndex | Int32 | An Int32 value specifying the newly created WindowsUIButton order relative to other WindowsUIButtons. |
enabled | Boolean | true if the button is enabled; otherwise, false. |
superTip | SuperToolTip | A SuperToolTip object associated with the WindowsUIButton created. |
groupIndex | Int32 | An Int32 value that specifies a radio button group to which the newly created WindowsUIButton belongs (for check-buttons only). |