 | IQueryAllElementsWithIDs Method |
Gets all the elements which are descendants of the provided CAEX object with IDs.
Elements using the same ID are grouped together.
Use this method to validate the uniqueness of IDs.
Namespace: Aml.Engine.Services.InterfacesAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
SyntaxILookup<string, ICAEXReference> AllElementsWithIDs(
CAEXBasicObject caexObject,
string ID = ""
)
Function AllElementsWithIDs (
caexObject As CAEXBasicObject,
Optional ID As String = ""
) As ILookup(Of String, ICAEXReference)
ILookup<String^, ICAEXReference^>^ AllElementsWithIDs(
CAEXBasicObject^ caexObject,
String^ ID = L""
)
Parameters
- caexObject CAEXBasicObject
- The CAEX object.
- ID String (Optional)
- If an ID is specified, only elements with the defined ID are searched.
Return Value
ILookupString,
ICAEXReference
Lookup table of elements with IDs. The ID is used as a dictionary key.
See Also