EditorAttribute 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
EditorAttribute 클래스의 새 인스턴스를 초기화합니다.
오버로드
EditorAttribute() |
기본 편집기(편집기 없음)를 사용하여 EditorAttribute 클래스의 새 인스턴스를 초기화합니다. |
EditorAttribute(String, String) |
편집기의 형식 이름 및 기본 형식 이름을 사용하여 EditorAttribute 클래스의 새 인스턴스를 초기화합니다. |
EditorAttribute(String, Type) |
형식 이름과 기본 형식을 사용하여 EditorAttribute 클래스의 새 인스턴스를 초기화합니다. |
EditorAttribute(Type, Type) |
형식과 기본 형식을 사용하여 EditorAttribute 클래스의 새 인스턴스를 초기화합니다. |
EditorAttribute()
- Source:
- EditorAttribute.cs
- Source:
- EditorAttribute.cs
- Source:
- EditorAttribute.cs
기본 편집기(편집기 없음)를 사용하여 EditorAttribute 클래스의 새 인스턴스를 초기화합니다.
public:
EditorAttribute();
public EditorAttribute ();
Public Sub New ()
적용 대상
EditorAttribute(String, String)
- Source:
- EditorAttribute.cs
- Source:
- EditorAttribute.cs
- Source:
- EditorAttribute.cs
편집기의 형식 이름 및 기본 형식 이름을 사용하여 EditorAttribute 클래스의 새 인스턴스를 초기화합니다.
public:
EditorAttribute(System::String ^ typeName, System::String ^ baseTypeName);
public EditorAttribute (string typeName, string? baseTypeName);
public EditorAttribute (string typeName, string baseTypeName);
new System.ComponentModel.EditorAttribute : string * string -> System.ComponentModel.EditorAttribute
Public Sub New (typeName As String, baseTypeName As String)
매개 변수
- typeName
- String
편집기의 정규화된 형식 이름입니다.
- baseTypeName
- String
편집기의 조회 키로 사용할 기본 클래스 또는 인터페이스의 정규화된 형식 이름입니다. 이 클래스는 UITypeEditor이거나 이 클래스에서 파생되어야 합니다.
설명
매개 변수는 typeName
형식이어야 Type.AssemblyQualifiedName 합니다.
매개 변수로 표시되는 는 TypetypeName
에서 파생되거나 기본 클래스를 구현해야 합니다.
Type 데이터 형식에 둘 이상의 편집기가 연결될 수 있으므로 매개 변수가 나타내는 baseTypeName
을 키로 사용하여 특정 편집기를 찾습니다. 이 클래스는 모든 클래스일 수 있지만 일반적으로 UITypeEditor 또는 ComponentEditor입니다.
적용 대상
EditorAttribute(String, Type)
- Source:
- EditorAttribute.cs
- Source:
- EditorAttribute.cs
- Source:
- EditorAttribute.cs
형식 이름과 기본 형식을 사용하여 EditorAttribute 클래스의 새 인스턴스를 초기화합니다.
public:
EditorAttribute(System::String ^ typeName, Type ^ baseType);
public EditorAttribute (string typeName, Type baseType);
new System.ComponentModel.EditorAttribute : string * Type -> System.ComponentModel.EditorAttribute
Public Sub New (typeName As String, baseType As Type)
매개 변수
- typeName
- String
편집기의 정규화된 형식 이름입니다.
- baseType
- Type
편집기의 조회 키로 사용할 기본 클래스 또는 인터페이스의 Type입니다. 이 클래스는 UITypeEditor이거나 이 클래스에서 파생되어야 합니다.
설명
매개 변수는 typeName
형식이어야 Type.AssemblyQualifiedName 합니다.
Type 에 의해 typeName
표현 된 에서 파생 하거나 기본 클래스를 구현 해야 합니다.
baseType
매개 변수는 데이터 형식에 둘 이상의 편집기가 연결될 수 있으므로 특정 편집기를 찾기 위한 키로 사용됩니다.
적용 대상
EditorAttribute(Type, Type)
- Source:
- EditorAttribute.cs
- Source:
- EditorAttribute.cs
- Source:
- EditorAttribute.cs
형식과 기본 형식을 사용하여 EditorAttribute 클래스의 새 인스턴스를 초기화합니다.
public:
EditorAttribute(Type ^ type, Type ^ baseType);
public EditorAttribute (Type type, Type baseType);
new System.ComponentModel.EditorAttribute : Type * Type -> System.ComponentModel.EditorAttribute
Public Sub New (type As Type, baseType As Type)
매개 변수
- baseType
- Type
편집기의 조회 키로 사용할 기본 클래스 또는 인터페이스의 Type입니다. 이 클래스는 UITypeEditor이거나 이 클래스에서 파생되어야 합니다.
설명
매개 변수로 표시되는 는 Typetype
에서 파생되거나 기본 클래스를 구현해야 합니다.
baseType
매개 변수는 데이터 형식에 둘 이상의 편집기가 연결될 수 있으므로 특정 편집기를 찾기 위한 키로 사용됩니다.
적용 대상
.NET