Skip to main content

AdornerElementCollection.GetElementsBySource<TType>(Object) Method

Gets AdornerElements of the specific type that are related to the target UI element.

Namespace: DevExpress.Utils.VisualEffects

Assembly: DevExpress.Utils.v23.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

public TType[] GetElementsBySource<TType>(
    object source
)
    where TType : AdornerElement

Parameters

Name Type Description
source Object

An Object that is the source UI element, whose related adorner elements should be returned.

Type Parameters

Name
TType

Returns

Type Description
TType[]

A one-dimensional array containing elements of the specific type.

Remarks

The GetElementsBySource<TType> method returns an array of specific type elements, whose AdornerElement.TargetElement property values refer to the source element.

See Also