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 |
取得集合物件 (Collection Object) 的資料型別。 (繼承來源 CollectionEditor) |
Context |
取得指示目前內容的型別描述項。 (繼承來源 CollectionEditor) |
HelpTopic |
當按下編輯器的對話方塊 [說明] 按鈕或 F1 鍵時,取得 Help 關鍵字以顯示說明主題或主題清單。 (繼承來源 CollectionEditor) |
IsDropDownResizable |
取得值,表示使用者是否能夠調整下拉式編輯器的大小。 (繼承來源 UITypeEditor) |
NewItemTypes |
取得可為這個集合建立的項目之可用型別。 (繼承來源 CollectionEditor) |