DropDownButton.ShowArrowButton Property
OBSOLETE
Use the DropDownArrowStyle property instead
Gets or sets whether the drop-down arrow is displayed as a part of the DropDownButton control.
Namespace: DevExpress.XtraEditors
Assembly: DevExpress.XtraEditors.v24.1.dll
NuGet Package: DevExpress.Win.Navigation
Declaration
[Browsable(false)]
[DXCategory("Behavior")]
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("Use the DropDownArrowStyle property instead")]
public bool ShowArrowButton { get; set; }
Property Value
Type | Description |
---|---|
Boolean | true if the drop-down arrow is visible; otherwise,false. |
Remarks
Clicking the drop-down arrow opens the popup control associated with the current control. If the ShowArrowButton property is set to false, the drop-down arrow is hidden. In this mode, the availability of the dropdown control is controlled by the DropDownButton.ActAsDropDown property.
To open the dropdown control in code, use the DropDownButton.ShowDropDown method.
See Also