Click or drag to resize

CAEXObjectCAEXPath Method

Gets the CAEX path for this object. A path can be used to uniquely reference an object, for example in inheritances and instances. The path syntax for an object is defined differently in CAEX 2.15 and CAEX 3.0. The engine uses the CAEXPathBuilder to generate the CAEX path of an object according to the documents CAEX version.

Namespace: Aml.Engine.CAEX
Assembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntax
public string CAEXPath()

Return Value

String
The CAEX path.

Implements

ICAEXObjectCAEXPath
Remarks
Paths require the definition of separators between different path elements. CAEX 2.15 distinguishes between 4 separator types: Alias separator, object separator, interface separator and attribute separator. In CAEX 3.0 only the separator types Alias separator and object separator are used.

Please note that this method returns a different result than the GetFullNodePath(ICAEXObject) method, which always returns the path including the object names of all ancestor hierarchy levels.

See Also