 | QueryResultAllElementsWithIDReference Method |
Gets all the elements with identifier references. Elements referencing the same ID are grouped together.
Use this method to validate the existence of referenced IDs.
Namespace: Aml.Engine.ServicesAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntaxpublic static ILookup<string, ICAEXReference> AllElementsWithIDReference(
this CAEXDocument doc
)
<ExtensionAttribute>
Public Shared Function AllElementsWithIDReference (
doc As CAEXDocument
) As ILookup(Of String, ICAEXReference)
public:
[ExtensionAttribute]
static ILookup<String^, ICAEXReference^>^ AllElementsWithIDReference(
CAEXDocument^ doc
)
Parameters
- doc CAEXDocument
- The document.
Return Value
ILookupString,
ICAEXReferencegroup of elements with ID references. The ID is used as a group key.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
CAEXDocument. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also