PropertySpecification Constructor (String, Type, String, String, Object) | 
 
            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.4.0.0 (1.4.19.0711)
Syntaxpublic PropertySpecification(
	string name,
	Type propertyType,
	string category,
	string description,
	Object defaultValue
)
Public Sub New ( 
	name As String,
	propertyType As Type,
	category As String,
	description As String,
	defaultValue As Object
)
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. 
See Also