CheckBox
The object displays the checkbox in the report. On the toolbar, it looks as follows:
And on the report page – as follows:
The object can display two states: "Checked" and "Unchecked". Use the following ways to handle the object's state:
set the state in the "Checked" property;
bind the object to a data column using the "DataColumn" property;
set the expression that returns the true or false in the "Expression" property.
The "CheckBox" object has the following properties:
Property | Description |
---|---|
CheckedSymbol, UncheckedSymbol | These properties determine the symbol that is shown in the object, depending on the object's state. |
CheckColor | This property determines the color of the check symbol. |
CheckWidthRatio | Use this property to set the check width ratio. The width of the check symbol depends on the size of the object. You can use values in the 0.2 - 2 range. |
HideIfUnchecked | This property allows to hide the object if it is unchecked. |
Checked | This property controls the state of the object. |
DataColumn | The data column which this object is bound to. The type of column should be either bool or int. |
Expression | The expression that returns the true or false. |