 | PdfiumFPDFFormField_SetDefaultValue Method |
Set the default value of the field.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDFFormField_SetDefaultValue(
IntPtr frmField,
string value,
bool bNotify = false
)
Public Shared Function FPDFFormField_SetDefaultValue (
frmField As IntPtr,
value As String,
Optional bNotify As Boolean = false
) As Boolean
public:
static bool FPDFFormField_SetDefaultValue(
IntPtr frmField,
String^ value,
bool bNotify = false
)
static member FPDFFormField_SetDefaultValue :
frmField : IntPtr *
value : string *
?bNotify : bool
(* Defaults:
let _bNotify = defaultArg bNotify false
*)
-> bool
public static boolean FPDFFormField_SetDefaultValue(
IntPtr frmField,
String value,
boolean bNotify = false
)
Patagames.Pdf.Pdfium.FPDFFormField_SetDefaultValue = function(frmField, value, bNotify);
Parameters
- frmField IntPtr
- Handle to field. Returned by FPDFInterForm_GetField(IntPtr, Int32, String) function./
- value String
- New value
- bNotify Boolean (Optional)
- True for notify application about changes in forms
Return Value
BooleanTrue for success or False otherwise
See Also