Discuss this help topic in SecureBlackbox Forum

TElXMLTextType

Declared in     


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


Specifies the type of XML text.

Declaration

[C#/Java]
    TElXMLTextType = short;
        const short ttNormal = 0;
        const short ttBase64 = 1;

[VB.NET]
    TElXMLTextType As SmallInt
        Const ttNormal As SmallInt = 0
        Const ttBase64 As SmallInt = 1

[Pascal]
    TElXMLTextType = (ttNormal, ttBase64);

[C++]
    typedef uint8_t TElXMLTextTypeRaw;
    typedef enum { ttNormal = 0, ttBase64 = 1 } TElXMLTextType;

Description

Possible values:


Declared in

.NET:
  • Namespace: SBXMLDefs
  • Assembly: SecureBlackbox.XML
VCL:
  • Unit: SBXMLDefs
Java:
  • Package: SecureBlackbox.XML.jar
C++:
  • sbxmldefs.h

Discuss this help topic in SecureBlackbox Forum