ComponentOne Bitmap for WPF
C1.WPF.DX.4.5.2 Assembly / C1.Util.DX Namespace / DXUtil Class / BuildPropertyGetter<T> Method
Type of the getter.
Type of the custom effect.
The property info to get the value from.

In This Topic
    BuildPropertyGetter<T> Method
    In This Topic
    Builds a fast property getter from a type and a property info.
    Syntax
    'Declaration
     
    Public Shared Function BuildPropertyGetter(Of T)( _
       ByVal customEffectType As Type, _
       ByVal propertyInfo As PropertyInfo _
    ) As C1.Util.DX.GetValueFastDelegate(Of T)
    public static C1.Util.DX.GetValueFastDelegate<T> BuildPropertyGetter<T>( 
       Type customEffectType,
       PropertyInfo propertyInfo
    )

    Parameters

    customEffectType
    Type of the custom effect.
    propertyInfo
    The property info to get the value from.

    Type Parameters

    T
    Type of the getter.

    Return Value

    A compiled delegate.
    See Also