C# Class AnimatGuiCtrls.Controls.PropertySpec

Represents a single property in a PropertySpec.
Datei anzeigen Open project: NeuroRoboticTech/AnimatLabPublicSource Class Usage Examples

Public Methods

Method Description
PropertySpec ( string name, Type type, string strPropertyName ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, Type type, string strPropertyName, string category ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, Type type, string strPropertyName, string category, string description ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, Type type, string strPropertyName, string category, string description, object defaultValue ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, Type type, string strPropertyName, string category, string description, object defaultValue, Type editor ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, Type type, string strPropertyName, string category, string description, object defaultValue, Type editor, Type typeConverter ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, Type type, string strPropertyName, string category, string description, object defaultValue, Type editor, Type typeConverter, bool bReadOnly ) : System
PropertySpec ( string name, Type type, string strPropertyName, string category, string description, object defaultValue, Type editor, bool bReadOnly ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, Type type, string strPropertyName, string category, string description, object defaultValue, Type editor, string typeConverter ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, Type type, string strPropertyName, string category, string description, object defaultValue, Type editor, string typeConverter, bool bReadOnly ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, Type type, string strPropertyName, string category, string description, object defaultValue, bool bReadonly ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, Type type, string strPropertyName, string category, string description, object defaultValue, string editor ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, Type type, string strPropertyName, string category, string description, object defaultValue, string editor, Type typeConverter ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, Type type, string strPropertyName, string category, string description, object defaultValue, string editor, Type typeConverter, bool bReadOnly ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, Type type, string strPropertyName, string category, string description, object defaultValue, string editor, string typeConverter ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, string type, string strPropertyName ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, string type, string strPropertyName, string category ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, string type, string strPropertyName, string category, string description ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, string type, string strPropertyName, string category, string description, object defaultValue ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, string type, string strPropertyName, string category, string description, object defaultValue, Type editor ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, string type, string strPropertyName, string category, string description, object defaultValue, Type editor, Type typeConverter ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, string type, string strPropertyName, string category, string description, object defaultValue, Type editor, bool bReadOnly ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, string type, string strPropertyName, string category, string description, object defaultValue, Type editor, string typeConverter ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, string type, string strPropertyName, string category, string description, object defaultValue, bool bReadonly ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, string type, string strPropertyName, string category, string description, object defaultValue, string editor ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, string type, string strPropertyName, string category, string description, object defaultValue, string editor, Type typeConverter ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, string type, string strPropertyName, string category, string description, object defaultValue, string editor, Type typeConverter, bool bReadOnly ) : System

Initializes a new instance of the PropertySpec class.

PropertySpec ( string name, string type, string strPropertyName, string category, string description, object defaultValue, string editor, string typeConverter ) : System

Initializes a new instance of the PropertySpec class.

Method Details

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, Type type, string strPropertyName ) : System
name string The name of the property displayed in the property grid.
type System.Type A Type that represents the type of the property.
strPropertyName string
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, Type type, string strPropertyName, string category ) : System
name string The name of the property displayed in the property grid.
type System.Type A Type that represents the type of the property.
strPropertyName string
category string
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, Type type, string strPropertyName, string category, string description ) : System
name string The name of the property displayed in the property grid.
type System.Type A Type that represents the type of the property.
strPropertyName string
category string The category under which the property is displayed in the /// property grid.
description string A string that is displayed in the help area of the /// property grid.
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, Type type, string strPropertyName, string category, string description, object defaultValue ) : System
name string The name of the property displayed in the property grid.
type System.Type A Type that represents the type of the property.
strPropertyName string
category string The category under which the property is displayed in the /// property grid.
description string A string that is displayed in the help area of the /// property grid.
defaultValue object The default value of the property, or null if there is /// no default value.
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, Type type, string strPropertyName, string category, string description, object defaultValue, Type editor ) : System
name string The name of the property displayed in the property grid.
type System.Type A Type that represents the type of the property.
strPropertyName string
category string The category under which the property is displayed in the /// property grid.
description string A string that is displayed in the help area of the /// property grid.
defaultValue object The default value of the property, or null if there is /// no default value.
editor System.Type The Type that represents the type of the editor for this /// property. This type must derive from UITypeEditor.
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, Type type, string strPropertyName, string category, string description, object defaultValue, Type editor, Type typeConverter ) : System
name string The name of the property displayed in the property grid.
type System.Type A Type that represents the type of the property.
strPropertyName string
category string The category under which the property is displayed in the /// property grid.
description string A string that is displayed in the help area of the /// property grid.
defaultValue object The default value of the property, or null if there is /// no default value.
editor System.Type The Type that represents the type of the editor for this /// property. This type must derive from UITypeEditor.
typeConverter System.Type The Type that represents the type of the type /// converter for this property. This type must derive from TypeConverter.
return System

PropertySpec() public method

public PropertySpec ( string name, Type type, string strPropertyName, string category, string description, object defaultValue, Type editor, Type typeConverter, bool bReadOnly ) : System
name string
type System.Type
strPropertyName string
category string
description string
defaultValue object
editor System.Type
typeConverter System.Type
bReadOnly bool
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, Type type, string strPropertyName, string category, string description, object defaultValue, Type editor, bool bReadOnly ) : System
name string The name of the property displayed in the property grid.
type System.Type A Type that represents the type of the property.
strPropertyName string
category string The category under which the property is displayed in the /// property grid.
description string A string that is displayed in the help area of the /// property grid.
defaultValue object The default value of the property, or null if there is /// no default value.
editor System.Type The Type that represents the type of the editor for this /// property. This type must derive from UITypeEditor.
bReadOnly bool
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, Type type, string strPropertyName, string category, string description, object defaultValue, Type editor, string typeConverter ) : System
name string The name of the property displayed in the property grid.
type System.Type A Type that represents the type of the property.
strPropertyName string
category string The category under which the property is displayed in the /// property grid.
description string A string that is displayed in the help area of the /// property grid.
defaultValue object The default value of the property, or null if there is /// no default value.
editor System.Type The Type that represents the type of the editor for this /// property. This type must derive from UITypeEditor.
typeConverter string The fully qualified name of the type of the type /// converter for this property. This type must derive from TypeConverter.
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, Type type, string strPropertyName, string category, string description, object defaultValue, Type editor, string typeConverter, bool bReadOnly ) : System
name string The name of the property displayed in the property grid.
type System.Type A Type that represents the type of the property.
strPropertyName string
category string The category under which the property is displayed in the /// property grid.
description string A string that is displayed in the help area of the /// property grid.
defaultValue object The default value of the property, or null if there is /// no default value.
editor System.Type The Type that represents the type of the editor for this /// property. This type must derive from UITypeEditor.
typeConverter string The fully qualified name of the type of the type /// converter for this property. This type must derive from TypeConverter.
bReadOnly bool
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, Type type, string strPropertyName, string category, string description, object defaultValue, bool bReadonly ) : System
name string The name of the property displayed in the property grid.
type System.Type A Type that represents the type of the property.
strPropertyName string
category string The category under which the property is displayed in the /// property grid.
description string A string that is displayed in the help area of the /// property grid.
defaultValue object The default value of the property, or null if there is /// no default value.
bReadonly bool
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, Type type, string strPropertyName, string category, string description, object defaultValue, string editor ) : System
name string The name of the property displayed in the property grid.
type System.Type A Type that represents the type of the property.
strPropertyName string
category string The category under which the property is displayed in the /// property grid.
description string A string that is displayed in the help area of the /// property grid.
defaultValue object The default value of the property, or null if there is /// no default value.
editor string The fully qualified name of the type of the editor for this /// property. This type must derive from UITypeEditor.
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, Type type, string strPropertyName, string category, string description, object defaultValue, string editor, Type typeConverter ) : System
name string The name of the property displayed in the property grid.
type System.Type A Type that represents the type of the property.
strPropertyName string
category string The category under which the property is displayed in the /// property grid.
description string A string that is displayed in the help area of the /// property grid.
defaultValue object The default value of the property, or null if there is /// no default value.
editor string The fully qualified name of the type of the editor for this /// property. This type must derive from UITypeEditor.
typeConverter System.Type The Type that represents the type of the type /// converter for this property. This type must derive from TypeConverter.
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, Type type, string strPropertyName, string category, string description, object defaultValue, string editor, Type typeConverter, bool bReadOnly ) : System
name string The name of the property displayed in the property grid.
type System.Type A Type that represents the type of the property.
strPropertyName string
category string The category under which the property is displayed in the /// property grid.
description string A string that is displayed in the help area of the /// property grid.
defaultValue object The default value of the property, or null if there is /// no default value.
editor string The fully qualified name of the type of the editor for this /// property. This type must derive from UITypeEditor.
typeConverter System.Type The Type that represents the type of the type /// converter for this property. This type must derive from TypeConverter.
bReadOnly bool
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, Type type, string strPropertyName, string category, string description, object defaultValue, string editor, string typeConverter ) : System
name string The name of the property displayed in the property grid.
type System.Type A Type that represents the type of the property.
strPropertyName string
category string The category under which the property is displayed in the /// property grid.
description string A string that is displayed in the help area of the /// property grid.
defaultValue object The default value of the property, or null if there is /// no default value.
editor string The fully qualified name of the type of the editor for this /// property. This type must derive from UITypeEditor.
typeConverter string The fully qualified name of the type of the type /// converter for this property. This type must derive from TypeConverter.
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, string type, string strPropertyName ) : System
name string The name of the property displayed in the property grid.
type string The fully qualified name of the type of the property.
strPropertyName string
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, string type, string strPropertyName, string category ) : System
name string The name of the property displayed in the property grid.
type string The fully qualified name of the type of the property.
strPropertyName string
category string The category under which the property is displayed in the /// property grid.
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, string type, string strPropertyName, string category, string description ) : System
name string The name of the property displayed in the property grid.
type string The fully qualified name of the type of the property.
strPropertyName string
category string The category under which the property is displayed in the /// property grid.
description string A string that is displayed in the help area of the /// property grid.
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, string type, string strPropertyName, string category, string description, object defaultValue ) : System
name string The name of the property displayed in the property grid.
type string The fully qualified name of the type of the property.
strPropertyName string
category string The category under which the property is displayed in the /// property grid.
description string A string that is displayed in the help area of the /// property grid.
defaultValue object The default value of the property, or null if there is /// no default value.
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, string type, string strPropertyName, string category, string description, object defaultValue, Type editor ) : System
name string The name of the property displayed in the property grid.
type string The fully qualified name of the type of the property.
strPropertyName string
category string The category under which the property is displayed in the /// property grid.
description string A string that is displayed in the help area of the /// property grid.
defaultValue object The default value of the property, or null if there is /// no default value.
editor System.Type The Type that represents the type of the editor for this /// property. This type must derive from UITypeEditor.
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, string type, string strPropertyName, string category, string description, object defaultValue, Type editor, Type typeConverter ) : System
name string The name of the property displayed in the property grid.
type string The fully qualified name of the type of the property.
strPropertyName string
category string The category under which the property is displayed in the /// property grid.
description string A string that is displayed in the help area of the /// property grid.
defaultValue object The default value of the property, or null if there is /// no default value.
editor System.Type The Type that represents the type of the editor for this /// property. This type must derive from UITypeEditor.
typeConverter System.Type The Type that represents the type of the type /// converter for this property. This type must derive from TypeConverter.
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, string type, string strPropertyName, string category, string description, object defaultValue, Type editor, bool bReadOnly ) : System
name string The name of the property displayed in the property grid.
type string The fully qualified name of the type of the property.
strPropertyName string
category string The category under which the property is displayed in the /// property grid.
description string A string that is displayed in the help area of the /// property grid.
defaultValue object The default value of the property, or null if there is /// no default value.
editor System.Type The Type that represents the type of the editor for this /// property. This type must derive from UITypeEditor.
bReadOnly bool
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, string type, string strPropertyName, string category, string description, object defaultValue, Type editor, string typeConverter ) : System
name string The name of the property displayed in the property grid.
type string The fully qualified name of the type of the property.
strPropertyName string
category string The category under which the property is displayed in the /// property grid.
description string A string that is displayed in the help area of the /// property grid.
defaultValue object The default value of the property, or null if there is /// no default value.
editor System.Type The Type that represents the type of the editor for this /// property. This type must derive from UITypeEditor.
typeConverter string The fully qualified name of the type of the type /// converter for this property. This type must derive from TypeConverter.
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, string type, string strPropertyName, string category, string description, object defaultValue, bool bReadonly ) : System
name string The name of the property displayed in the property grid.
type string The fully qualified name of the type of the property.
strPropertyName string
category string The category under which the property is displayed in the /// property grid.
description string A string that is displayed in the help area of the /// property grid.
defaultValue object The default value of the property, or null if there is /// no default value.
bReadonly bool
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, string type, string strPropertyName, string category, string description, object defaultValue, string editor ) : System
name string The name of the property displayed in the property grid.
type string The fully qualified name of the type of the property.
strPropertyName string
category string The category under which the property is displayed in the /// property grid.
description string A string that is displayed in the help area of the /// property grid.
defaultValue object The default value of the property, or null if there is /// no default value.
editor string The fully qualified name of the type of the editor for this /// property. This type must derive from UITypeEditor.
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, string type, string strPropertyName, string category, string description, object defaultValue, string editor, Type typeConverter ) : System
name string The name of the property displayed in the property grid.
type string The fully qualified name of the type of the property.
strPropertyName string
category string The category under which the property is displayed in the /// property grid.
description string A string that is displayed in the help area of the /// property grid.
defaultValue object The default value of the property, or null if there is /// no default value.
editor string The fully qualified name of the type of the editor for this /// property. This type must derive from UITypeEditor.
typeConverter Type The Type that represents the type of the type /// converter for this property. This type must derive from TypeConverter.
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, string type, string strPropertyName, string category, string description, object defaultValue, string editor, Type typeConverter, bool bReadOnly ) : System
name string The name of the property displayed in the property grid.
type string The fully qualified name of the type of the property.
strPropertyName string
category string The category under which the property is displayed in the /// property grid.
description string A string that is displayed in the help area of the /// property grid.
defaultValue object The default value of the property, or null if there is /// no default value.
editor string The fully qualified name of the type of the editor for this /// property. This type must derive from UITypeEditor.
typeConverter Type The Type that represents the type of the type /// converter for this property. This type must derive from TypeConverter.
bReadOnly bool
return System

PropertySpec() public method

Initializes a new instance of the PropertySpec class.
public PropertySpec ( string name, string type, string strPropertyName, string category, string description, object defaultValue, string editor, string typeConverter ) : System
name string The name of the property displayed in the property grid.
type string The fully qualified name of the type of the property.
strPropertyName string
category string The category under which the property is displayed in the /// property grid.
description string A string that is displayed in the help area of the /// property grid.
defaultValue object The default value of the property, or null if there is /// no default value.
editor string The fully qualified name of the type of the editor for this /// property. This type must derive from UITypeEditor.
typeConverter string The fully qualified name of the type of the type /// converter for this property. This type must derive from TypeConverter.
return System