 | QueryServiceElementsWithAliasReference Method |
Gets alls the elements which are descendants of the provided CAEX object
which use the provided Alias in a reference. 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> ElementsWithAliasReference(
CAEXBasicObject caexObject,
string alias,
string elementName = ""
)
Public Function ElementsWithAliasReference (
caexObject As CAEXBasicObject,
alias As String,
Optional elementName As String = ""
) As IEnumerable(Of ICAEXReference)
public:
virtual IEnumerable<ICAEXReference^>^ ElementsWithAliasReference(
CAEXBasicObject^ caexObject,
String^ alias,
String^ elementName = L""
) sealed
Parameters
- caexObject CAEXBasicObject
- The CAEX object.
- alias String
- The Alias.
- 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 use the provided Alias in a reference
Implements
IQueryElementsWithAliasReference(CAEXBasicObject, String, String)
See Also