DigitalSignatureFieldSetFieldPermissions Method (DigitalSignatureFieldFieldPermissions, String) |
Tentatively sets which fields are to be locked by this digital signature upon signing. It is not necessary to call HasCryptographicSignature before using this function. Throws if non-empty array of field names is passed along with FieldPermissions Action == e_lock_all.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void SetFieldPermissions(
DigitalSignatureFieldFieldPermissions in_action,
string[] in_field_names
)
Public Sub SetFieldPermissions (
in_action As DigitalSignatureFieldFieldPermissions,
in_field_names As String()
)
public:
virtual void SetFieldPermissions(
[InAttribute] DigitalSignatureFieldFieldPermissions in_action,
[InAttribute] array<String^>^ in_field_names
) sealed
function SetFieldPermissions(in_action, in_field_names);
Parameters
- in_action
- Type: pdftron.PDFDigitalSignatureFieldFieldPermissions
An enumerated value representing which sort of field locking should be done. Options are All (lock all fields), Include (lock listed fields), and Exclude (lock all fields except listed fields). - in_field_names
- Type: SystemString
A list of field names; can be empty (and must be empty, if Action is set to All). Empty by default.
See Also