Discuss this help topic in SecureBlackbox Forum

TSBOfficeOpenXMLEmbedCertificate

Declared in     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This class specifies if the signing certificate should be embedded in the electronic signature over MS Office OOXML document, and specifies where exactly the certificate should be embedded.

Declaration

[C#]
    public enum TSBOfficeOpenXMLEmbedCertificate { InSignature = 0, InCertificatePart = 1, InSignedCertificatePart = 2, None = 3 };

[VB.NET]
    Enum TSBOfficeOpenXMLEmbedCertificate
        InSignature = 0
        InCertificatePart = 1
        InSignedCertificatePart = 2
        None = 3
    End Enum

[Pascal]
    TSBOfficeOpenXMLEmbedCertificate = (ecInSignature, ecInCertificatePart, ecInSignedCertificatePart, ecNone);

[C++]
    typedef uint8_t TSBOfficeOpenXMLEmbedCertificateRaw;
    typedef enum { ecInSignature = 0, ecInCertificatePart = 1, ecInSignedCertificatePart = 2, ecNone = 3 } TSBOfficeOpenXMLEmbedCertificate;

[PHP]
    class TSBOfficeOpenXMLEmbedCertificate extends TSBBaseEnum {
        const ecInSignature = 0;
        const ecInCertificatePart = 1;
        const ecInSignedCertificatePart = 2;
        const ecNone = 3;
    }

[Java]
    public enum TSBOfficeOpenXMLEmbedCertificate { ecInSignature, ecInCertificatePart, ecInSignedCertificatePart, ecNone }

Possible values

Declared in

.NET:
  • Namespace: SBOfficeSecurity
  • Assembly: SecureBlackbox.Office
VCL:
  • Unit: SBOfficeSecurity
Java:
  • Package: SecureBlackbox.Office.jar
C++:
  • sbofficesecurity.h

Discuss this help topic in SecureBlackbox Forum