 | PdfiumFPDFFormField_CheckControl Method |
Toggle Checkbox or Radiobutton
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDFFormField_CheckControl(
IntPtr frmField,
int iControlIndex,
bool bChecked,
bool bNotify = false
)
Public Shared Function FPDFFormField_CheckControl (
frmField As IntPtr,
iControlIndex As Integer,
bChecked As Boolean,
Optional bNotify As Boolean = false
) As Boolean
public:
static bool FPDFFormField_CheckControl(
IntPtr frmField,
int iControlIndex,
bool bChecked,
bool bNotify = false
)
static member FPDFFormField_CheckControl :
frmField : IntPtr *
iControlIndex : int *
bChecked : bool *
?bNotify : bool
(* Defaults:
let _bNotify = defaultArg bNotify false
*)
-> bool
public static boolean FPDFFormField_CheckControl(
IntPtr frmField,
int iControlIndex,
boolean bChecked,
boolean bNotify = false
)
Patagames.Pdf.Pdfium.FPDFFormField_CheckControl = function(frmField, iControlIndex, bChecked, bNotify);
Parameters
- frmField IntPtr
- Handle to field. Returned by FPDFInterForm_GetField(IntPtr, Int32, String) function./
- iControlIndex Int32
- Zerobased index of field's control
- bChecked Boolean
- True for check, False otherwise
- bNotify Boolean (Optional)
- True for notify application about changes in forms
Return Value
BooleanTrue for success, False otherwise.
See Also