Package com.grapecity.documents.excel
Interface IReadOnlySignatureDetails
public interface IReadOnlySignatureDetails
Represents read-only detail of the signature.
-
Method Summary
Modifier and TypeMethodDescriptionGets the "address1" field in the signature details dialog.Gets the "address2" field in the signature details dialog.Gets the "application version" field in the additional information dialog.Gets the hash method of the checksum of the certificate.byte[]Gets the checksum of the certificate.Gets the issuer name of the certificate.Gets the serial number (in decimal format) of the certificate.getCity()Gets the "city" field in the signature details dialog.Gets the "claimed role" field in the signature details dialog.intGets the "color depth" field in the additional information dialog.Gets the "commitment type description" field in the "sign" dialog.Gets the "commitment type qualifier" field in the "sign" dialog.Gets the "country name" field in the signature details dialog.intGets the "horizontal resolution" field in the additional information dialog.intGets the "monitors" field in the additional information dialog.Gets the "office version" field in the additional information dialog.Gets the "PostalCode" field in the signature details dialog.Gets the certificate (private key removed) that was used to sign this workbook.Gets the "signature comments" field in the signature details dialog.byte[]Gets the value of the image used to sign the document.Gets the value of the signature text used to sign this document.Gets the "state or province" field in the signature details dialog.intGets the "vertical resolution" field in the additional information dialog.Gets the "windows version" field in the additional information dialog.
-
Method Details
-
getSignatureImage
byte[] getSignatureImage()Gets the value of the image used to sign the document. -
getSignatureText
String getSignatureText()Gets the value of the signature text used to sign this document. -
getSignatureCertificate
X509Certificate getSignatureCertificate()Gets the certificate (private key removed) that was used to sign this workbook. -
getAddress1
String getAddress1()Gets the "address1" field in the signature details dialog. -
getAddress2
String getAddress2()Gets the "address2" field in the signature details dialog. -
getApplicationVersion
String getApplicationVersion()Gets the "application version" field in the additional information dialog. -
getCity
String getCity()Gets the "city" field in the signature details dialog. -
getClaimedRole
String getClaimedRole()Gets the "claimed role" field in the signature details dialog. -
getColorDepth
int getColorDepth()Gets the "color depth" field in the additional information dialog. -
getCommitmentTypeQualifier
String getCommitmentTypeQualifier()Gets the "commitment type qualifier" field in the "sign" dialog. -
getCountryName
String getCountryName()Gets the "country name" field in the signature details dialog. -
getCommitmentTypeDescription
String getCommitmentTypeDescription()Gets the "commitment type description" field in the "sign" dialog. -
getHorizontalResolution
int getHorizontalResolution()Gets the "horizontal resolution" field in the additional information dialog. -
getMonitors
int getMonitors()Gets the "monitors" field in the additional information dialog. -
getOfficeVersion
String getOfficeVersion()Gets the "office version" field in the additional information dialog. -
getPostalCode
String getPostalCode()Gets the "PostalCode" field in the signature details dialog. -
getSignatureComments
String getSignatureComments()Gets the "signature comments" field in the signature details dialog. -
getStateOrProvince
String getStateOrProvince()Gets the "state or province" field in the signature details dialog. -
getVerticalResolution
int getVerticalResolution()Gets the "vertical resolution" field in the additional information dialog. -
getWindowsVersion
String getWindowsVersion()Gets the "windows version" field in the additional information dialog. -
getCertificateDigestMethod
String getCertificateDigestMethod()Gets the hash method of the checksum of the certificate. -
getCertificateDigestValue
byte[] getCertificateDigestValue()Gets the checksum of the certificate. -
getCertificateIssuerName
String getCertificateIssuerName()Gets the issuer name of the certificate. -
getCertificateSerialNumber
String getCertificateSerialNumber()Gets the serial number (in decimal format) of the certificate.
-