Flattens and removes a single acroform field.
Syntax
'Declaration
Public Sub FlattenFormField( _
ByVal As Field, _
ByVal As Boolean _
)
'Usage
Dim instance As ImGearPDFDocument
Dim field As Field
Dim forPrinter As Boolean
instance.FlattenFormField(field, forPrinter)
public void FlattenFormField(
Field ,
bool
)
public: void FlattenFormField(
Field* ,
bool
)
public:
void FlattenFormField(
Field^ ,
bool
)
Parameters
- field
- The field that needs to be flattened.
- forPrinter
- If true, only the field's widget annotations with the
PRINT flag set will be flattened. Others will be removed without flattening.
If false, all the field's widget annotations with be flattened, unless its
NOVIEW flag is set. These will be removed without being flattened.
See Also