 | IQueryAllElementsWithCAEXPathReference Method |
Gets all the elements which are descendants of the provided CAEX object and use a path reference.
Elements referencing the same path are grouped together.
Use this method to validate the existence of referenced classes. If the elementName is
set, only elements with the defined element name are considered.
Namespace: Aml.Engine.Services.InterfacesAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
SyntaxILookup<string, ICAEXReference> AllElementsWithCAEXPathReference(
CAEXBasicObject caexObject,
string elementName = "",
bool includeSelf = false
)
Function AllElementsWithCAEXPathReference (
caexObject As CAEXBasicObject,
Optional elementName As String = "",
Optional includeSelf As Boolean = false
) As ILookup(Of String, ICAEXReference)
ILookup<String^, ICAEXReference^>^ AllElementsWithCAEXPathReference(
CAEXBasicObject^ caexObject,
String^ elementName = L"",
bool includeSelf = false
)
Parameters
- caexObject CAEXBasicObject
- The CAEX object.
- elementName String (Optional)
- If parameter is set, only elements with the given element Name are considered.
- includeSelf Boolean (Optional)
- If true, the specified object is checked for a path reference too
Return Value
ILookupString,
ICAEXReference
Lookup table of elements with path references. The CAEXPath is used as a grouping key.
See Also