Skip to content

Commit 773561b

Browse files
authored
Update 16/umbraco-cms/customizing/property-editors/property-value-converters.md
1 parent b6daae0 commit 773561b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

16/umbraco-cms/customizing/property-editors/property-value-converters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ For example, a Content Picker stores the Key of the picked node in the database.
1111
A Property Value Converter has three conversion levels:
1212
* **Source** - The raw data stored in the database; this is generally a `string`.
1313
* **Intermediate** - An object of a type that is appropriate to the property. For example, a node Key should be a `Guid`, or a collection of node Keys would be a `Guid[]`.
14-
* **Object** - The object to be used when accessing the property using the Published Content API; for example, the object returned by the `IPublishedContent.Value<T>(alias)` method. Also, the Models Builder generates a property of the type of the object.
14+
* **Object** - The object to be used when accessing the property using the Published Content API. For example, the object returned by the `IPublishedContent.Value<T>(alias)` method. Additionally, the Models Builder generates a property of the same type as the object.
1515

1616
## Create a Property Value Converter
1717
A class becomes a Property Value Converter when it implements the `IPropertyValueConverter` interface from the `Umbraco.Cms.Core.PropertyEditors` namespace. Property Value Converters are automatically registered when implementing the interface. Any given PropertyEditor can only utilize a single Property Value Converter.

0 commit comments

Comments
 (0)