New to Telerik ReportingStart a free 30-day trial

Represents a check box report item.

Definition

Namespace:Telerik.Reporting

Assembly:Telerik.Reporting.dll

Syntax:

C#
[ToolboxBitmap(typeof(CheckBox), "Resources.Checkbox.bmp")]
public class CheckBox : TextItemBase, IToggleVisibilityTarget, IActionTarget

Inheritance: objectReportObjectReportItemBaseReportItemTextItemBaseCheckBox...

Implements: IActionTargetIToggleVisibilityTarget

Inherited Members TextItemBase.AngleTextItemBase.FormatTextItemBase.CanGrowTextItemBase.CanShrinkTextItemBase.MultilineTextItemBase.TextWrapTextItemBase.CultureTextItemBase.DefaultSizeReportItem.SizeReportItem.LocationReportItem.AnchoringReportItem.DockingReportItem.BoundsReportItem.LeftReportItem.RightReportItem.TopReportItem.BottomReportItem.WidthReportItem.HeightReportItemBase.Dispose()ReportItemBase.Dispose(bool)ReportItemBase.ToString()ReportItemBase.Contains(ReportItemBase)ReportItemBase.GetEventHandlers(EventHandler)ReportItemBase.OnItemValidate(ReportItemBase)ReportItemBase.ClearGlobalDependencies()ReportItemBase.ContainerReportItemBase.DesignModeReportItemBase.SiteReportItemBase.NameReportItemBase.ItemDataBindingMethodNameReportItemBase.ItemDataBoundMethodNameReportItemBase.VisibleReportItemBase.StyleNameReportItemBase.StyleReportItemBase.ItemsReportItemBase.ParentReportItemBase.ReportReportItemBase.ConditionalFormattingReportItemBase.BookmarkReportItemBase.BookmarkIdReportItemBase.DocumentMapTextReportItemBase.TocTextReportItemBase.TocLevelReportItemBase.ActionReportItemBase.BindingsReportItemBase.ToolTipReportItemBase.AccessibleDescriptionReportItemBase.AccessibleRoleReportItemBase.AIDescriptionReportItemBase.ItemDataBindingReportItemBase.ItemDataBoundReportItemBase.DisposedReportObject.ToString(string[])...

Constructors

C#
public CheckBox()

Properties

CheckAlign

ContentAlignment

Gets or sets the alignment of the check mark on a CheckBox.

C#
public ContentAlignment CheckAlign { get; set; }
Property Value:

One of the ContentAlignment values. The default is MiddleLeft.

Gets or sets the image corresponding to an Selected CheckBox

C#
[TypeConverter(typeof(ObjectValueConverter))]
public object CheckedImage { get; set; }
Property Value:

A string started with "=" is interpreted as an expression,

Gets or sets the value template corresponding to an Unchecked CheckBox

C#
[TypeConverter(typeof(ObjectValueConverter))]
public object FalseValue { get; set; }
Property Value:

A string started with "=" is interpreted as an expression to calculate the real data, otherwise - literal string.

Gets or sets the image corresponding to an Indeterminate CheckBox

C#
[TypeConverter(typeof(ObjectValueConverter))]
public object IndeterminateImage { get; set; }
Property Value:

A string started with "=" is interpreted as an expression,

Gets or sets the value template corresponding to an Indeterminate CheckBox

C#
[TypeConverter(typeof(ObjectValueConverter))]
public object IndeterminateValue { get; set; }
Property Value:

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.

C#
public string Text { get; set; }
Property Value:

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

C#
[TypeConverter(typeof(ObjectValueConverter))]
public object TrueValue { get; set; }
Property Value:

A string started with "=" is interpreted as an expression to calculate the real data, otherwise - literal string.

Gets or sets the image corresponding to an Unchecked CheckBox

C#
[TypeConverter(typeof(ObjectValueConverter))]
public object UncheckedImage { get; set; }
Property Value:

A string started with "=" is interpreted as an expression,

Value

object

Gets or sets the value of the check box.

C#
[TypeConverter(typeof(ObjectValueConverter))]
public object Value { get; set; }
Property Value:

A string started with "=" is interpreted as an expression to calculate the real data, otherwise - literal string.