Binding.ConverterParameter Property

Definition

Gets or sets the parameter to pass to the Converter.

public:
 property System::Object ^ ConverterParameter { System::Object ^ get(); void set(System::Object ^ value); };
public object ConverterParameter { get; set; }
member this.ConverterParameter : obj with get, set
Public Property ConverterParameter As Object

Property Value

The parameter to pass to the Converter. The default is null.

Remarks

You can use the ConverterParameter property to specify how an object is converted. This property passes additional information to a converter that you use on a binding. When you specify a ConverterParameter, the value is passed to the Convert and ConvertBack methods as the parameter parameter.

For an example, see How to: Produce a Value Based on a List of Bound Items. That example shows an implementation of an IMultiValueConverter but the usage still applies.

Applies to