PropertyGrid for WPF | ComponentOne
C1.WPF.PropertyGrid Namespace / PropertyAttribute Class / SetValue<T> Method
The type of the value to be set.
The value to be set
The converter to convert the value to the property type if necessary.

In This Topic
    SetValue<T> Method (PropertyAttribute)
    In This Topic
    Sets the specified value.
    Syntax
    'Declaration
     
    
    Public Sub SetValue(Of T)( _
       ByVal value As T, _
       ByVal converter As IValueConverter _
    ) 
    public void SetValue<T>( 
       T value,
       IValueConverter converter
    )

    Parameters

    value
    The value to be set
    converter
    The converter to convert the value to the property type if necessary.

    Type Parameters

    T
    The type of the value to be set.
    See Also