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

RibbonCheckBoxItem Class

A ribbon item used to display the check box functionality.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public class RibbonCheckBoxItem :
    RibbonEditItemBase

Remarks

The RibbonCheckBoxItem object is a ribbon item that implements the check box functionality. The item’s settings can be accessed and customized using the RibbonCheckBoxItem.PropertiesCheckBox property.

When the RibbonCheckBoxItem value is changed, the client-side ASPxClientRibbon.CommandExecuted event is raised. You can use the ASPxClientRibbonCommandExecutedEventArgs.item argument property to determine the item related to the event. The ASPxClientRibbonCommandExecutedEventArgs.parameter argument property returns the textual representation of the check box state (i.e., “true” or “false”).

ASPxRibbon_CheckBoxItem

<dx:RibbonCheckBoxItem Name="ApplyStyle" Text="Apply Style">
</dx:RibbonCheckBoxItem>

To learn more about ribbon item types, see the Item Types topic.

See Also