 | PdfiumFPDFFormField_IsItemDefaultSelected Method |
Determines that the Combobox's or Listbox's item specified by index is selected by Default
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDFFormField_IsItemDefaultSelected(
IntPtr frmField,
int index
)
Public Shared Function FPDFFormField_IsItemDefaultSelected (
frmField As IntPtr,
index As Integer
) As Boolean
public:
static bool FPDFFormField_IsItemDefaultSelected(
IntPtr frmField,
int index
)
static member FPDFFormField_IsItemDefaultSelected :
frmField : IntPtr *
index : int -> bool
public static boolean FPDFFormField_IsItemDefaultSelected(
IntPtr frmField,
int index
)
Patagames.Pdf.Pdfium.FPDFFormField_IsItemDefaultSelected = function(frmField, index);
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.
Return Value
BooleanTrue if item selected, False otherwise
See Also