Signature.Comment-Eigenschaft
Ruft den Textkommentar ab, der der digitalen Signatur hinzugefügt wurde, die einem Formular bzw. einer Gruppe signierter Daten in einem Formular zugeordnet ist.
Namespace: Microsoft.Office.Interop.InfoPath
Assembly: Microsoft.Office.Interop.InfoPath (in microsoft.office.interop.infopath.dll)
Syntax
'Declaration
<DispIdAttribute(1)> _
ReadOnly Property Comment As String
'Usage
Dim instance As Signature
Dim value As String
value = instance.Comment
[DispIdAttribute(1)]
string Comment { get; }
Beispiel
Im folgenden Beispiel wird die Comment-Eigenschaft des SignatureObject-Objekts in einem Meldungsfeld angezeigt:
public void DisplaySignatureProperties()
{
SignatureObject mySignature = thisXDocument.SignedDataBlocks[0].Signatures[0];
string signatureComment = mySignature.Comment;
thisXDocument.UI.Alert("Comment = " + signatureComment);
}
Siehe auch
Referenz
Signature-Schnittstelle
Signature-Member
Microsoft.Office.Interop.InfoPath-Namespace