FDFDocFieldCreate Method (String, Int32, String) |
Creates a new interactive form field.
Namespace:
pdftron.FDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public FDFField FieldCreate(
string field_name,
int type,
string field_value
)
Public Function FieldCreate (
field_name As String,
type As Integer,
field_value As String
) As FDFField
public:
virtual FDFField^ FieldCreate(
[InAttribute] String^ field_name,
[InAttribute] int type,
[InAttribute] String^ field_value
) sealed
function FieldCreate(field_name, type, field_value);
Parameters
- field_name
- Type: SystemString
The name of the field. - type
- Type: SystemInt32
The type of the field. - field_value
- Type: SystemString
The value of the field.
Return Value
Type:
FDFFieldThe created FDFField.
See Also