Document Solutions for PDF
GrapeCity.Documents.DX.Windows Assembly / GrapeCity.Documents.DX Namespace / DXUtil Class / BuildPropertySetter<T> Method
Type of the setter.
Type of the custom effect.
The property info to set the value to.

In This Topic
    BuildPropertySetter<T> Method
    In This Topic
    Builds a fast property setter from a type and a property info.
    Syntax
    'Declaration
     
    Public Shared Function BuildPropertySetter(Of T)( _
       ByVal customEffectType As System.Type, _
       ByVal propertyInfo As System.Reflection.PropertyInfo _
    ) As GrapeCity.Documents.DX.SetValueFastDelegate(Of T)
    public static GrapeCity.Documents.DX.SetValueFastDelegate<T> BuildPropertySetter<T>( 
       System.Type customEffectType,
       System.Reflection.PropertyInfo propertyInfo
    )

    Parameters

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

    Type Parameters

    T
    Type of the setter.

    Return Value

    A compiled delegate.
    See Also