Interface ICheckableFormField
Inherited Members
Namespace: IronSoftware.Forms
Assembly: IronPdf.dll
Syntax
public interface ICheckableFormField : IFormField, IFormFieldObject, IFormFieldAnnotationObject, IPdfDocumentObject, IDocumentObject
Properties
SelectedIndex
Currently selected index
Declaration
int SelectedIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Methods
Clear()
Clear any and all selected values
Declaration
void Clear()
Select(Int32)
Select the value at the specified index
If no index is provided, selects the first value. If there are more than one options, throws an exception
Declaration
string Select(int index = -1)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | Index to select |
Returns
Type | Description |
---|---|
System.String | Value at the selected index |
Exceptions
Type | Condition |
---|---|
System.Exception | No index was provided and there is more than one selectable option |