ArrayEditor 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
디자인 타임에서 배열을 편집하기 위해 사용자 인터페이스를 제공합니다.
public ref class ArrayEditor : System::ComponentModel::Design::CollectionEditor
public class ArrayEditor : System.ComponentModel.Design.CollectionEditor
type ArrayEditor = class
inherit CollectionEditor
Public Class ArrayEditor
Inherits CollectionEditor
- 상속
예제
다음 코드 예제를 적용 하는 방법을 보여 줍니다는 System.ComponentModel.EditorAttribute 속성입니다.
public:
property array<Object^>^ componentArray
{
[EditorAttribute(System::ComponentModel::Design::ArrayEditor::typeid,
System::Drawing::Design::UITypeEditor::typeid)]
array<Object^>^ get()
{
return compArray;
}
void set( array<Object^>^ value )
{
compArray = value;
}
}
private:
array<Object^>^compArray;
[EditorAttribute(typeof(System.ComponentModel.Design.ArrayEditor), typeof(System.Drawing.Design.UITypeEditor))]
public object[] componentArray
{
get
{
return compArray;
}
set
{
compArray = value;
}
}
private object[] compArray;
<EditorAttribute(GetType(ArrayEditor), GetType(System.Drawing.Design.UITypeEditor))> _
Public Property componentArray() As Object()
Get
Return compArray
End Get
Set(ByVal Value As Object())
compArray = Value
End Set
End Property
Private compArray() As Object
설명
이 편집기는 디자인 타임 환경에서 배열을 편집에 사용할 수 있습니다.
생성자
ArrayEditor(Type) |
배열의 지정된 데이터 형식을 사용하여 ArrayEditor 클래스의 새 인스턴스를 초기화합니다. |
속성
CollectionItemType |
컬렉션에 있는 각 항목의 데이터 형식을 가져옵니다. (다음에서 상속됨 CollectionEditor) |
CollectionType |
컬렉션 개체의 데이터 형식을 가져옵니다. (다음에서 상속됨 CollectionEditor) |
Context |
현재 컨텍스트를 나타내는 형식 설명자를 가져옵니다. (다음에서 상속됨 CollectionEditor) |
HelpTopic |
편집기 대화 상자의 도움말 단추나 F1 키를 누를 때 도움말 항목 또는 항목 목록을 표시하는 도움말 키워드를 가져옵니다. (다음에서 상속됨 CollectionEditor) |
IsDropDownResizable |
드롭다운 편집기를 사용자가 크기 조정할 수 있는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 UITypeEditor) |
NewItemTypes |
이 컬렉션에 만들 수 있는 사용 가능한 항목 형식을 가져옵니다. (다음에서 상속됨 CollectionEditor) |
메서드
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET