Signature.Comment Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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);
}