 | PdfiumFPDFFormField_IsOptionSelected Method |
Determines that the option's item specified by index is selected
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDFFormField_IsOptionSelected(
IntPtr frmField,
int iOptIndex
)
Public Shared Function FPDFFormField_IsOptionSelected (
frmField As IntPtr,
iOptIndex As Integer
) As Boolean
public:
static bool FPDFFormField_IsOptionSelected(
IntPtr frmField,
int iOptIndex
)
static member FPDFFormField_IsOptionSelected :
frmField : IntPtr *
iOptIndex : int -> bool
public static boolean FPDFFormField_IsOptionSelected(
IntPtr frmField,
int iOptIndex
)
Patagames.Pdf.Pdfium.FPDFFormField_IsOptionSelected = function(frmField, iOptIndex);
Parameters
- frmField IntPtr
- Handle to field. Returned by FPDFInterForm_GetField(IntPtr, Int32, String) function./
- iOptIndex Int32
- Zero based index of item in option
Return Value
BooleanTrue if selected, False otherwise.
See Also