ValueConverterDefinitionCollection

Description

A ValueConverterDefinitionCollection represents a collection of key/value pairs, where key is a string used to identify the corresponding ValueConverterDefinition. It extends ResourceCollection<T>.

Properties

Property

Element

Type

Description

key

 

string

The identifier of the ValueConverterDefinition.

 

value

ValueConverterDefinition

The ValueConverterDefinition.

Example

const percentValueConverter = new PercentValueConverter();

const ValueConverterDefinitions = {

  percent: percentValueConverter

};