Action Property

Specifies the security-related operations to be performed on a drawing.

See Also | Example

Signature

object.Action

object

SecurityParams
The object or objects this property applies to.

Action

Long; AcadSecurityParamsType enum; read-write. Specify one or more of the following constants for drawing encryption, drawing properties encryption, a digital signature, or a time stamp.

ACADSECURITYPARAMS_ENCRYPT_DATA

0x00000001

ACADSECURITYPARAMS_ENCRYPT_PROPS

0x00000002

ACADSECURITYPARAMS_SIGN_DATA

0x00000010

ACADSECURITYPARAMS_ADD_TIMESTAMP

0x00000020

Remarks

Each constant represents a security-related operation. When you use the Action property, at some point in the set of operations you must set the Action property to either the ACADSECURITYPARAMS_ENCRYPT_DATA constant, the ACADSECURITYPARAMS_SIGN_DATA constant, or to both.

To specify multiple security-related operations, add the constants representing the operations. For example, to sign a drawing and use a time stamp, specify the following:

ACADSECURITYPARAMS_SIGN_DATA + ACADSECURITYPARAMS_ADD_TIMESTAMP

 

   Comments?