C# 클래스 AnimatGuiCtrls.Controls.PropertySpec

Represents a single property in a PropertySpec.
파일 보기 프로젝트 열기: NeuroRoboticTech/AnimatLabPublicSource 1 사용 예제들

공개 메소드들

메소드 설명
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.

메소드 상세

PropertySpec() 공개 메소드

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
리턴 System

PropertySpec() 공개 메소드

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
리턴 System

PropertySpec() 공개 메소드

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.
리턴 System

PropertySpec() 공개 메소드

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.
리턴 System

PropertySpec() 공개 메소드

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.
리턴 System

PropertySpec() 공개 메소드

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.
리턴 System

PropertySpec() 공개 메소드

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
리턴 System

PropertySpec() 공개 메소드

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
리턴 System

PropertySpec() 공개 메소드

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.
리턴 System

PropertySpec() 공개 메소드

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
리턴 System

PropertySpec() 공개 메소드

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
리턴 System

PropertySpec() 공개 메소드

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.
리턴 System

PropertySpec() 공개 메소드

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.
리턴 System

PropertySpec() 공개 메소드

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
리턴 System

PropertySpec() 공개 메소드

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.
리턴 System

PropertySpec() 공개 메소드

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
리턴 System

PropertySpec() 공개 메소드

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.
리턴 System

PropertySpec() 공개 메소드

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.
리턴 System

PropertySpec() 공개 메소드

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.
리턴 System

PropertySpec() 공개 메소드

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.
리턴 System

PropertySpec() 공개 메소드

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.
리턴 System

PropertySpec() 공개 메소드

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
리턴 System

PropertySpec() 공개 메소드

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.
리턴 System

PropertySpec() 공개 메소드

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
리턴 System

PropertySpec() 공개 메소드

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.
리턴 System

PropertySpec() 공개 메소드

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.
리턴 System

PropertySpec() 공개 메소드

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
리턴 System

PropertySpec() 공개 메소드

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.
리턴 System