 | PdfiumFPDFFormField_SelectOption Method |
Select or deselect option's item specified by index
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDFFormField_SelectOption(
IntPtr frmField,
int iOptIndex,
bool bSelected,
bool bNotify = false
)
Public Shared Function FPDFFormField_SelectOption (
frmField As IntPtr,
iOptIndex As Integer,
bSelected As Boolean,
Optional bNotify As Boolean = false
) As Boolean
public:
static bool FPDFFormField_SelectOption(
IntPtr frmField,
int iOptIndex,
bool bSelected,
bool bNotify = false
)
static member FPDFFormField_SelectOption :
frmField : IntPtr *
iOptIndex : int *
bSelected : bool *
?bNotify : bool
(* Defaults:
let _bNotify = defaultArg bNotify false
*)
-> bool
public static boolean FPDFFormField_SelectOption(
IntPtr frmField,
int iOptIndex,
boolean bSelected,
boolean bNotify = false
)
Patagames.Pdf.Pdfium.FPDFFormField_SelectOption = function(frmField, iOptIndex, bSelected, bNotify);
Parameters
- frmField IntPtr
- Handle to field. Returned by FPDFInterForm_GetField(IntPtr, Int32, String) function./
- iOptIndex Int32
- Zero based index of item in option
- bSelected Boolean
- True for select, False otherwise
- bNotify Boolean (Optional)
- True for notify application about changes in forms
Return Value
BooleanTrue for success, false otherwise.
See Also