|  | IQueryAllElementsWithIDReference Method | 
                Gets all the elements which are descendants of the provided CAEX object which use identifier references.
                Elements referencing the same ID are grouped together.
                Use this method to validate the existence of referenced IDs. 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
 Syntax
SyntaxILookup<string, ICAEXReference> AllElementsWithIDReference(
	CAEXBasicObject caexObject,
	string elementName = ""
)
Function AllElementsWithIDReference ( 
	caexObject As CAEXBasicObject,
	Optional elementName As String = ""
) As ILookup(Of String, ICAEXReference)
ILookup<String^, ICAEXReference^>^ AllElementsWithIDReference(
	CAEXBasicObject^ caexObject, 
	String^ elementName = L""
)
Parameters
- caexObject  CAEXBasicObject
- The CAEX object.
- elementName  String  (Optional)
- If parameter is set, only elements with the given element Name are considered.
Return Value
ILookupString, 
ICAEXReferenceLookup table of elements with ID references.  The ID is used as a dictionary key.
 See Also
See Also