| SignDocDocumentsetField Method |
Change a field.
This function changes a field in the document using attributes
from a SignDocField object. Everything except for the name and
the type of the field can be changed. See the member functions of
SignDocField for details.
Always get a SignDocField object for a field by calling
getField(), getFields(), or getFields(), then apply your
modifications to that object, then call setField().
Do not try to build a SignDocField object from scratch for
changing a field as future versions of the SignDocField class may
have additional attributes.
This function is implemented for PDF documents only.
This function always fails for PDF documents that have signed
signature fields.
Namespace: de.softpro.signdocsdkAssembly: SPSignDoc_4.1_DotNetLibd (in SPSignDoc_4.1_DotNetLibd.dll) Version: 1.0.5882.21462
Syntaxpublic void setField(
SignDocField field,
SetFieldFlag flags
)
Public Sub setField (
field As SignDocField,
flags As SetFieldFlag
)
public:
void setField(
SignDocField^ field,
SetFieldFlag flags
)
member setField :
field : SignDocField *
flags : SetFieldFlag -> unit
Parameters
- field
- Type: de.softpro.signdocsdkSignDocField
The field to be changed. The font resource
name of the default text field attributes
may be modified. The value index and the
value may be modified - flags
- Type: de.softpro.signdocsdk.Enums.EDocumentSetFieldFlag
Flags modifying the behavior of this function,
see sff_font_fail, sff_font_warn, sff_font_ignore,
sff_move, #sff_keep_ap, sff_update_ap, sff_fit_height_only.
sff_force_border_width, and sff_dont_break_lines.
See Also