Class CheckBoxField
Represents a checkbox field.
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Model.InteractiveForms
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public class CheckBoxField : FormField<TwoStatesButtonWidget>, IInstanceIdOwner, IWidgetCreator<TwoStatesButtonWidget>, ITwoStatesButtonField<bool>
Constructors
CheckBoxField(String)
Initializes a new instance of CheckBoxField class.
Declaration
public CheckBoxField(string fieldName)
Parameters
System.String
fieldName
The field name. |
Properties
ExportValue
Gets or sets the field export values.
Declaration
public string ExportValue { get; set; }
Property Value
System.String
|
FieldType
Gets the field type.
Declaration
public override sealed FormFieldType FieldType { get; }
Property Value
FormFieldType
|
Overrides
IsChecked
Gets or sets a boolean value indicating whether the field is checked or not.
Declaration
public bool IsChecked { get; set; }
Property Value
System.Boolean
|
IsCheckedByDefault
Gets or sets a boolean value indicating whether the check box should be checked when the form is reset to its default values.
Declaration
public bool IsCheckedByDefault { get; set; }
Property Value
System.Boolean
|