 | QueryServiceAllElementsWithIDs 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.ServicesAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntaxpublic ILookup<string, ICAEXReference> AllElementsWithIDs(
CAEXBasicObject caexObject,
string ID = ""
)
Public Function AllElementsWithIDs (
caexObject As CAEXBasicObject,
Optional ID As String = ""
) As ILookup(Of String, ICAEXReference)
public:
virtual ILookup<String^, ICAEXReference^>^ AllElementsWithIDs(
CAEXBasicObject^ caexObject,
String^ ID = L""
) sealed
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 group key.
Implements
IQueryAllElementsWithIDs(CAEXBasicObject, String)
See Also