PDFDocFieldCreate Method (String, FieldType) |
Create a new interactive form Field.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public Field FieldCreate(
string field_name,
FieldType type
)
Public Function FieldCreate (
field_name As String,
type As FieldType
) As Field
public:
virtual Field^ FieldCreate(
[InAttribute] String^ field_name,
[InAttribute] FieldType type
) sealed
function FieldCreate(field_name, type);
Parameters
- field_name
- Type: SystemString
a string representing the fully qualified name of the
field (e.g. "employee.name.first"). field_name must be either a unique name or
equal to an existing terminal field name.
- type
- Type: pdftron.PDFFieldType
field type (e.g. Field::e_text, Field::e_button, etc.)
Return Value
Type:
Field the new form Field.
See Also