|
RangeTypeConverterCreateInstance Method (ITypeDescriptorContext, IDictionary)
|
Creates an instance of the type that this TypeConverter is associated with, using the specified context, given a set of property values for the object.
Namespace:
Accord.Controls
Assembly:
Accord.Controls (in Accord.Controls.dll) Version: 3.8.0
Syntaxpublic override Object CreateInstance(
ITypeDescriptorContext context,
IDictionary propertyValues
)
Public Overrides Function CreateInstance (
context As ITypeDescriptorContext,
propertyValues As IDictionary
) As Object
Request Example
View SourceParameters
- context
- Type: System.ComponentModelITypeDescriptorContext
An ITypeDescriptorContext that provides a format context. - propertyValues
- Type: System.CollectionsIDictionary
An IDictionary of new property values.
Return Value
Type:
Object
An
Object representing the given
IDictionary, or null if the object cannot be created. This method always returns null.
See Also