Interface IDataValueEditorFactory
A factory for creating IDataValueEditor instances.
Namespace: Umbraco.Cms.Core.PropertyEditors
Assembly: Umbraco.Core.dll
Syntax
public interface IDataValueEditorFactory
Methods
View SourceCreate<TDataValueEditor>(params object[])
Creates a new instance of the specified TDataValueEditor type.
Declaration
TDataValueEditor Create<TDataValueEditor>(params object[] args) where TDataValueEditor : class, IDataValueEditor
Parameters
| Type | Name | Description |
|---|---|---|
| object[] | args | The constructor arguments for the data value editor. |
Returns
| Type | Description |
|---|---|
| TDataValueEditor | A new instance of the specified data value editor type. |
Type Parameters
| Name | Description |
|---|---|
| TDataValueEditor | The type of data value editor to create. |