Edit

Share via


Signature.Comment Property

Definition

Gets the text comment that was added to the digital signature associated with a form or a set of signed data in a form.

public:
 property System::String ^ Comment { System::String ^ get(); };
public string Comment { get; }
member this.Comment : string
Public ReadOnly Property Comment As String

Property Value

Examples

In the following example, the Comment property of the SignatureObject object is displayed in a message box:

public void DisplaySignatureProperties()
{
SignatureObject mySignature = thisXDocument.SignedDataBlocks[0].Signatures[0];
string signatureComment = mySignature.<span class="label">Comment</span>;
thisXDocument.UI.Alert("Comment = " + signatureComment);
}

Remarks

Important: This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.

Applies to