Skip to main content
A newer version of this page is available. .

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.v18.2.dll

Declaration

[Obsolete("Use the DropDownArrowStyle property instead")]
[DXCategory("Behavior")]
[Browsable(false)]
[SmartTagProperty("Show Arrow Button", "", 0, SmartTagActionType.RefreshBoundsAfterExecute)]
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. See this link to learn more.

To open the dropdown control in code, use the DropDownButton.ShowDropDown method.

See Also