CheckBox
Represents a check box report item.
Definition
Namespace:Telerik.Reporting
Assembly:Telerik.Reporting.dll
Syntax:
[ToolboxBitmap(typeof(CheckBox), "Resources.Checkbox.bmp")]
public class CheckBox : TextItemBase, IToggleVisibilityTarget, IActionTarget
Inheritance: objectReportObjectReportItemBaseReportItemTextItemBaseCheckBox...
Implements:
Inherited Members
Constructors
public CheckBox()
Properties
CheckAlign
ContentAlignment
Gets or sets the alignment of the check mark on a CheckBox.
public ContentAlignment CheckAlign { get; set; }
One of the ContentAlignment values. The default is MiddleLeft.
CheckedImage
object
Gets or sets the image corresponding to an Selected CheckBox
[TypeConverter(typeof(ObjectValueConverter))]
public object CheckedImage { get; set; }
A string started with "=" is interpreted as an expression,
FalseValue
object
Gets or sets the value template corresponding to an Unchecked CheckBox
[TypeConverter(typeof(ObjectValueConverter))]
public object FalseValue { get; set; }
A string started with "=" is interpreted as an expression to calculate the real data, otherwise - literal string.
IndeterminateImage
object
Gets or sets the image corresponding to an Indeterminate CheckBox
[TypeConverter(typeof(ObjectValueConverter))]
public object IndeterminateImage { get; set; }
A string started with "=" is interpreted as an expression,
IndeterminateValue
object
Gets or sets the value template corresponding to an Indeterminate CheckBox
[TypeConverter(typeof(ObjectValueConverter))]
public object IndeterminateValue { get; set; }
A string started with "=" is interpreted as an expression to calculate the real data, otherwise - literal string.
Text
string
Gets or sets the current text (aka label) in the check box.
public string Text { get; set; }
A string started with "=" is interpreted as an expression to calculate the real data, otherwise - literal string. Supports embedded expressions also.
TrueValue
object
Gets or sets the value template corresponding to an Selected CheckBox
[TypeConverter(typeof(ObjectValueConverter))]
public object TrueValue { get; set; }
A string started with "=" is interpreted as an expression to calculate the real data, otherwise - literal string.
UncheckedImage
object
Gets or sets the image corresponding to an Unchecked CheckBox
[TypeConverter(typeof(ObjectValueConverter))]
public object UncheckedImage { get; set; }
A string started with "=" is interpreted as an expression,
Value
object
Gets or sets the value of the check box.
[TypeConverter(typeof(ObjectValueConverter))]
public object Value { get; set; }
A string started with "=" is interpreted as an expression to calculate the real data, otherwise - literal string.