Skip to main content

CheckBoxBrick.CheckState Property

OBSOLETE

This property is obsolete now. Use the CheckBoxState property instead.

Gets or sets the current state of the CheckBoxBrick object.

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.Printing.v26.1.Core.dll

NuGet Package: DevExpress.Printing.Core

Declaration

[Obsolete("This property is obsolete now. Use the CheckBoxState property instead.")]
public CheckBoxState CheckState { get; set; }

Property Value

Type
CheckBoxState

Available values:

Name Description
Unchecked

The check box is unchecked.

Checked

The check box is checked.

Indeterminate

A visual state that signals to the user that the control state cannot be determined.

Remarks

If this property is set to the Checked value the check box displays a check mark.

If this property is set to the Unchecked value the check box is empty.

If this property is set to the Indeterminate value and the CheckBoxBrick.Checked property is set to true the check box displays a shaded check mark.

See Also