class EditorAttribute

in global :: System . ComponentModel

Specifies the editor to use to change a property. This class cannot be inherited.


public EditorAttribute( string typeName, string baseTypeName )

Initializes a new instance of the class with the type name and base type name of the editor.

  • typeName The fully qualified type name of the editor.
  • baseTypeName The fully qualified type name of the base class or interface to use as a lookup key for the editor. This class must be or derive from .

public EditorAttribute( string typeName, Type baseType )

Initializes a new instance of the class with the type name and the base type.

  • typeName The fully qualified type name of the editor.
  • baseType The of the base class or interface to use as a lookup key for the editor. This class must be or derive from .

public EditorAttribute( Type type, Type baseType )

Initializes a new instance of the class with the type and the base type.

  • type A that represents the type of the editor.
  • baseType The of the base class or interface to use as a lookup key for the editor. This class must be or derive from .

public string EditorBaseTypeName { get; }

Gets the name of the base class or interface serving as a lookup key for this editor.

  • Returns The name of the base class or interface serving as a lookup key for this editor.

public string EditorTypeName { get; }

Gets the name of the editor class in the format.

  • Returns The name of the editor class in the format.

public bool Equals( object obj )

Returns whether the value of the given object is equal to the current .

  • obj The object to test the value equality of.
  • Returns if the value of the given object is equal to that of the current object; otherwise, .

public object TypeId { get; }

Gets a unique ID for this attribute type.

  • Returns A unique ID for this attribute type.

public int GetHashCode( )

😔 No documentation found.

public bool Match( object obj )

😔 No documentation found.

public bool IsDefaultAttribute( )

😔 No documentation found.

public Type GetType( )

😔 No documentation found.

public string ToString( )

😔 No documentation found.

public EditorAttribute( )

😔 No documentation found.