 | QueryServiceElementsWithIDReference Method |
Gets alls the elements from the document which have a reference to the provided ID. The elements in the result
collection are
references, which define the CAEX object and the attribute, containing the reference
.
If the elementName is
set, only elements with the defined element name are considered.
Namespace: Aml.Engine.ServicesAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntaxpublic IEnumerable<ICAEXReference> ElementsWithIDReference(
CAEXBasicObject caexObject,
string ID,
string elementName = ""
)
Public Function ElementsWithIDReference (
caexObject As CAEXBasicObject,
ID As String,
Optional elementName As String = ""
) As IEnumerable(Of ICAEXReference)
public:
virtual IEnumerable<ICAEXReference^>^ ElementsWithIDReference(
CAEXBasicObject^ caexObject,
String^ ID,
String^ elementName = L""
) sealed
Parameters
- caexObject CAEXBasicObject
- The CAEX object.
- ID String
- The identifier.
- elementName String (Optional)
- If parameter is set, only elements with the given element Name are considered.
Return Value
IEnumerableICAEXReference
a collection of element references which have a reference to the provided ID
Implements
IQueryElementsWithIDReference(CAEXBasicObject, String, String)
See Also