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

BarSplitCheckItem.IsChecked Property

Gets or sets whether the item is in the pushed state. This is a dependency property.

Namespace: DevExpress.Xpf.Bars

Assembly: DevExpress.Xpf.Core.v19.2.dll

Declaration

public bool? IsChecked { get; set; }

Property Value

Type Description
Nullable<Boolean>

true if the item’s check button is in the pushed state; false if the item’s check button is in the normal state; null if the button’s state is indeterminate.

Remarks

Use the IsChecked property to specify the check state for the item’s check button. By default, two states are supported - Checked and Unchecked. If the BarSplitCheckItem.IsThreeState option is enabled, the item’s check button supports three states: Checked, Unchecked and Indeterminate.

Changing the IsChecked property fires the BarSplitCheckItem.CheckedChanged event.

See Also