C# Class System.ComponentModel.PropertyTabAttribute

Inheritance: System.Attribute
Show file Open project: dotnet/corefx Class Usage Examples

Public Methods

Method Description
Equals ( PropertyTabAttribute other ) : bool
Equals ( object other ) : bool
GetHashCode ( ) : int

Returns the hashcode for this object.

PropertyTabAttribute ( ) : System

Basic constructor that creates a PropertyTabAttribute. Use this ctor to derive from this attribute and specify multiple tab types by calling InitializeArrays.

PropertyTabAttribute ( Type tabClass ) : System

Basic constructor that creates a property tab attribute that will create a tab of the specified type.

PropertyTabAttribute ( Type tabClass, PropertyTabScope tabScope ) : System

Basic constructor that creates a property tab attribute that will create a tab of the specified type.

PropertyTabAttribute ( string tabClassName ) : System

Basic constructor that creates a property tab attribute that will create a tab of the specified type.

PropertyTabAttribute ( string tabClassName, PropertyTabScope tabScope ) : System

Basic constructor that creates a property tab attribute that will create a tab of the specified type.

Protected Methods

Method Description
InitializeArrays ( Type tabClasses, PropertyTabScope tabScopes ) : void

Utiliity function to set the types of tab classes this PropertyTabAttribute specifies.

InitializeArrays ( string tabClassNames, PropertyTabScope tabScopes ) : void

Utiliity function to set the types of tab classes this PropertyTabAttribute specifies.

Private Methods

Method Description
InitializeArrays ( string tabClassNames, Type tabClasses, PropertyTabScope tabScopes ) : void

Method Details

Equals() public method

public Equals ( PropertyTabAttribute other ) : bool
other PropertyTabAttribute
return bool

Equals() public method

public Equals ( object other ) : bool
other object
return bool

GetHashCode() public method

Returns the hashcode for this object.

public GetHashCode ( ) : int
return int

InitializeArrays() protected method

Utiliity function to set the types of tab classes this PropertyTabAttribute specifies.

protected InitializeArrays ( Type tabClasses, PropertyTabScope tabScopes ) : void
tabClasses System.Type
tabScopes PropertyTabScope
return void

InitializeArrays() protected method

Utiliity function to set the types of tab classes this PropertyTabAttribute specifies.

protected InitializeArrays ( string tabClassNames, PropertyTabScope tabScopes ) : void
tabClassNames string
tabScopes PropertyTabScope
return void

PropertyTabAttribute() public method

Basic constructor that creates a PropertyTabAttribute. Use this ctor to derive from this attribute and specify multiple tab types by calling InitializeArrays.

public PropertyTabAttribute ( ) : System
return System

PropertyTabAttribute() public method

Basic constructor that creates a property tab attribute that will create a tab of the specified type.

public PropertyTabAttribute ( Type tabClass ) : System
tabClass System.Type
return System

PropertyTabAttribute() public method

Basic constructor that creates a property tab attribute that will create a tab of the specified type.

public PropertyTabAttribute ( Type tabClass, PropertyTabScope tabScope ) : System
tabClass System.Type
tabScope PropertyTabScope
return System

PropertyTabAttribute() public method

Basic constructor that creates a property tab attribute that will create a tab of the specified type.

public PropertyTabAttribute ( string tabClassName ) : System
tabClassName string
return System

PropertyTabAttribute() public method

Basic constructor that creates a property tab attribute that will create a tab of the specified type.

public PropertyTabAttribute ( string tabClassName, PropertyTabScope tabScope ) : System
tabClassName string
tabScope PropertyTabScope
return System