 | IQueryAllElementsWithNameReference Method |
Gets all the elements which are descendants of the provided CAEX object and use a name reference.
Elements referencing the same name are grouped together.
Use this method to validate the existence of referenced elements.
Namespace: Aml.Engine.Services.InterfacesAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
SyntaxILookup<string, ICAEXReference> AllElementsWithNameReference(
CAEXBasicObject caexObject,
string elementName = ""
)
Function AllElementsWithNameReference (
caexObject As CAEXBasicObject,
Optional elementName As String = ""
) As ILookup(Of String, ICAEXReference)
ILookup<String^, ICAEXReference^>^ AllElementsWithNameReference(
CAEXBasicObject^ caexObject,
String^ elementName = L""
)
Parameters
- caexObject CAEXBasicObject
- The CAEX object.
- elementName String (Optional)
- The name of the referencing element
Return Value
ILookupString,
ICAEXReferenceLookup table of elements with name references. The name is used as a grouping key.
See Also