Click or drag to resize

ObjectWithBaseClassIsOverridden Method

Determines, if an element of a class with an inheritance relation to a base class is an overridden element, what means a base class contains an element which is considered as equal to the provided element. In most cases, equality is defined by equality of the element names.

Namespace: Aml.Engine.CAEX.Extensions
Assembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntax
public static bool IsOverridden(
	this IClassWithBaseClassReference classWithBaseClass,
	CAEXBasicObject element
)

Parameters

classWithBaseClass  IClassWithBaseClassReference
the base class containing the element
element  CAEXBasicObject
the element to test

Return Value

Boolean
true, if an element of a class with an inheritance relation to a base class is an overridden element

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IClassWithBaseClassReference. 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