ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF.Forms Namespace / CheckBox Class / Checked Property




In This Topic
    Checked Property
    In This Topic
    Gets or sets a value indicating whether the checkbox is checked. If there are multiple checkboxes in the field, setting Checked to true will check the first checkbox.
    Syntax
    'Declaration
     
    Public Property Checked As Boolean
    'Usage
     
    Dim instance As CheckBox
    Dim value As Boolean
     
    instance.Checked = value
     
    value = instance.Checked
    public bool Checked {get; set;}
    public: __property bool get_Checked();
    public: __property void set_Checked( 
       bool value
    );
    public:
    property bool Checked {
       bool get();
       void set (    bool value);
    }

    Property Value

    Whether this considered checked.
    See Also