PropertySpecification Constructor (String, Type, String, String, Object, Type, Type) |
Initializes a new instance of the PropertySpec class.
Namespace:
SD.Tools.Algorithmia.GeneralDataStructures.PropertyEditing
Assembly:
SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.2.0.0 (1.2.16.0406)
Syntax public PropertySpecification(
string name,
Type propertyType,
string category,
string description,
Object defaultValue,
Type editorType,
Type typeConverterType
)
Public Sub New (
name As String,
propertyType As Type,
category As String,
description As String,
defaultValue As Object,
editorType As Type,
typeConverterType As Type
)
Parameters
- name
- Type: SystemString
The name of the property displayed in the property grid. - propertyType
- Type: SystemType
The fully qualified name of the type of the property. - category
- Type: SystemString
The category under which the property is displayed in the property grid. - description
- Type: SystemString
A string that is displayed in the help area of the property grid. - defaultValue
- Type: SystemObject
The default value of the property, or null if there is no default value. - editorType
- Type: SystemType
The Type that represents the type of the editor for this property. This type must derive from UITypeEditor. - typeConverterType
- Type: SystemType
The Type that represents the type of the type converter for this property. This type must derive from TypeConverter.
See Also