[Overview][Types][Classes][Procedures and functions][Index] Reference for unit 'Laz2_XPath' (#lazutils)

TAxis

Identifies an XPath Axis used in an XPath expression.

Declaration

Source position: laz2_xpath.pas line 223

type TAxis = (

  axisInvalid,

  

An invalid Axis name in the XPath syntax.

  axisAncestor,

  

The ancestor:: Axis.

  axisAncestorOrSelf,

  

The ancestor-or-self:: Axis.

  axisAttribute,

  

The attribute:: Axis.

  axisChild,

  

The child:: Axis.

  axisDescendant,

  

The descendant:: Axis.

  axisDescendantOrSelf,

  

The descendant-or-self:: Axis.

  axisFollowing,

  

The following:: Axis.

  axisFollowingSibling,

  

The following-sibling:: Axis.

  axisNamespace,

  

The namespace:: Axis.

  axisParent,

  

The parent:: Axis.

  axisPreceding,

  

The preceding:: Axis.

  axisPrecedingSibling,

  

The preceding-sibling:: Axis.

  axisSelf,

  

The self:: Axis.

  axisRoot

  

The root:: Axis.

);


Version 4.0 Generated 2025-05-03 Home