C# Class FullInspector.CustomBehaviorEditorAttribute

Mark a type as a custom behavior editor. That editor needs to derive from BehaviorEditor{TBehavior} and will be used as the editor for that behavior type.
Inheritance: System.Attribute
Mostra file Open project: jacobdufault/fullinspector

Public Properties

Property Type Description
BehaviorType System.Type
Inherit bool

Public Methods

Method Description
CustomBehaviorEditorAttribute ( Type behaviorType ) : System

Method Details

CustomBehaviorEditorAttribute() public method

public CustomBehaviorEditorAttribute ( Type behaviorType ) : System
behaviorType System.Type
return System

Property Details

BehaviorType public_oe property

The behavior type to edit.
public Type,System BehaviorType
return System.Type

Inherit public_oe property

True if this should editor should apply to derived types. Defaults to true.
public bool Inherit
return bool