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