![]() |
PDFix SDK
6.5.0
|
PdfFormField class. More...
Public Member Functions | |
virtual PdfFieldType | GetType ()=0 |
Gets the type of field. More... | |
virtual PdfFieldFlags | GetFlags ()=0 |
Gets the form field's flags. More... | |
virtual bool | SetFlags (PdfFieldFlags flags)=0 |
Sets the form field's flags. More... | |
virtual int | GetValue (wchar_t *buffer, int len)=0 |
Gets the field's value as string. More... | |
virtual bool | SetValue (const wchar_t *value)=0 |
Sets the field's value as string. Multiple values should be comma-separated. More... | |
virtual int | GetDefaultValue (wchar_t *buffer, int len)=0 |
Gets the field's default value as string. More... | |
virtual int | GetFullName (wchar_t *buffer, int len)=0 |
Gets the field's full name within the document AcroForm field tree. More... | |
virtual int | GetTooltip (wchar_t *buffer, int len)=0 |
Gets the field's tooltip. More... | |
virtual int | GetNumOptions ()=0 |
Gets the number of elements in the Opt array. More... | |
virtual int | GetOptionValue (int index, wchar_t *buffer, int len)=0 |
Gets the field's option value. More... | |
virtual int | GetOptionCaption (int index, wchar_t *buffer, int len)=0 |
Gets the field's option caption. More... | |
virtual PdfAction * | GetAction ()=0 |
Gets a field's action object. More... | |
virtual PdfAction * | GetAAction (PdfActionEventType event)=0 |
Gets a field's additional action object. More... | |
virtual int | GetMaxLength ()=0 |
Gets maximum length of the field's text, in characters. More... | |
virtual int | GetWidgetExportValue (PdfAnnot *annot, wchar_t *buffer, int len)=0 |
Gets the field's widget export value. More... | |
virtual PdsDictionary * | GetObject ()=0 |
Gets the field's dictionary object. More... | |
virtual int | GetNumExportValues ()=0 |
Gets the number of field's export values of the radio button and check box field. More... | |
virtual int | GetExportValue (int index, wchar_t *buffer, int len)=0 |
Gets the field's export value for n-th widget of the form field. More... | |
PdfFormField class.
PdfFormField object represents interactive form dictionary that shall be referenced from the AcroForm entry in the document catalogue
|
pure virtual |
Gets a field's additional action object.
event | The event which additional action to get. |
|
pure virtual |
Gets a field's action object.
|
pure virtual |
Gets the field's default value as string.
buffer | (filled by method) If the buffer is null function returns required length of string |
len | Length of a buffer to be filled in. |
|
pure virtual |
Gets the field's export value for n-th widget of the form field.
index | the index of the widget in the form field |
buffer | (filled by method) If the buffer is null function returns required length of string |
len | Length of a buffer to be filled in. |
|
pure virtual |
Gets the form field's flags.
|
pure virtual |
Gets the field's full name within the document AcroForm field tree.
buffer | (filled by method) If the buffer is null function returns required length of string |
len | Length of a buffer to be filled in. |
|
pure virtual |
Gets maximum length of the field's text, in characters.
|
pure virtual |
Gets the number of field's export values of the radio button and check box field.
|
pure virtual |
Gets the number of elements in the Opt array.
|
pure virtual |
Gets the field's dictionary object.
|
pure virtual |
Gets the field's option caption.
index | The index of option to retrieve. |
buffer | (filled by method) If the buffer is null function returns required length of string |
len | Length of a buffer to be filled in. |
|
pure virtual |
Gets the field's option value.
index | The index of option to retrieve. |
buffer | (filled by method) If the buffer is null function returns required length of string |
len | Length of a buffer to be filled in. |
|
pure virtual |
Gets the field's tooltip.
buffer | (filled by method) If the buffer is null function returns required length of string |
len | Length of a buffer to be filled in. |
|
pure virtual |
Gets the type of field.
|
pure virtual |
Gets the field's value as string.
buffer | (filled by method) If the buffer is null function returns required length of string |
len | Length of a buffer to be filled in. |
|
pure virtual |
Gets the field's widget export value.
annot | The widget annotation that holds the export value |
buffer | (filled by method) If the buffer is null function returns required length of string |
len | Length of a buffer to be filled in. |
|
pure virtual |
Sets the form field's flags.
|
pure virtual |
Sets the field's value as string. Multiple values should be comma-separated.
buffer | The new form field string value |