Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
TElAxisType = short;
const short atAncestor = 0;
const short atAncestor_or_self = 1;
const short atAttribute = 2;
const short atChild = 3;
const short atDescendant = 4;
const short atDescendant_or_self = 5;
const short atFollowing = 6;
const short atFollowing_sibling = 7;
const short atNamespace = 8;
const short atParent = 9;
const short atPreceding = 10;
const short atPreceding_sibling = 11;
const short atSelf = 12;
[VB.NET]
TElAxisType As Short
Const atAncestor As Short = 0
Const atAncestor_or_self As Short = 1
Const atAttribute As Short = 2
Const atChild As Short = 3
Const atDescendant As Short = 4
Const atDescendant_or_self As Short = 5
Const atFollowing As Short = 6
Const atFollowing_sibling As Short = 7
Const atNamespace As Short = 8
Const atParent As Short = 9
Const atPreceding As Short = 10
Const atPreceding_sibling As Short = 11
Const atSelf As Short = 12
[Pascal]
under development
[C++]
typedef uint8_t TElAxisTypeRaw;
typedef enum { atAncestor = 0, atAncestor_or_self = 1, atAttribute = 2, atChild = 3, atDescendant = 4, atDescendant_or_self = 5, atFollowing = 6, atFollowing_sibling = 7, atNamespace = 8, atParent = 9, atPreceding = 10, atPreceding_sibling = 11, atSelf = 12 } TElAxisType;
[PHP]
class TElAxisType extends TSBBaseEnum {
const atAncestor = 0;
const atAncestor_or_self = 1;
const atAttribute = 2;
const atChild = 3;
const atDescendant = 4;
const atDescendant_or_self = 5;
const atFollowing = 6;
const atFollowing_sibling = 7;
const atNamespace = 8;
const atParent = 9;
const atPreceding = 10;
const atPreceding_sibling = 11;
const atSelf = 12;
}
Possible values
Declared in
.NET:
- Namespace: SBXMLPath
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum