C# 클래스 FullInspector.BehaviorEditor

파일 보기 프로젝트 열기: jacobdufault/fullinspector 1 사용 예제들

공개 메소드들

메소드 설명
Get ( Type behaviorType ) : IBehaviorEditor

Returns a behavior editor that can be used to edit the given behavior type.

비공개 메소드들

메소드 설명
BehaviorEditor ( ) : System
CreateEditor ( Type behaviorType ) : IBehaviorEditor

Returns a set of property editors that can be used to edit the given property type.

SortByPropertyTypeRelevance ( List editors ) : void

If there are multiple user-defined property editors that report that they can edit a specific type, we sort the applicability of the property editor based on how close it's reported edited type is to the actual property type. This allows for, say, the IListPropertyEditor to override the ICollectionPropertyEditor.

메소드 상세

Get() 공개 정적인 메소드

Returns a behavior editor that can be used to edit the given behavior type.
public static Get ( Type behaviorType ) : IBehaviorEditor
behaviorType System.Type /// The type of behavior to edit. This should derive from BaseBehavior. ///
리턴 IBehaviorEditor