Binding.ConverterParameter Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.