TableCellsCollectionEditor 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
提供一個使用者介面以編輯在表格列中的儲存格集合。
public ref class TableCellsCollectionEditor : System::ComponentModel::Design::CollectionEditor
public class TableCellsCollectionEditor : System.ComponentModel.Design.CollectionEditor
type TableCellsCollectionEditor = class
inherit CollectionEditor
Public Class TableCellsCollectionEditor
Inherits CollectionEditor
- 繼承
範例
下列程式碼範例會使用 EditorAttribute 建立 類別和 UITypeEditor 類別 (集合編輯器基類) 與自訂 TestCells
屬性的關聯 TableCellsCollectionEditor
。
private TableCellCollection cells = null;
// Associate the TableCellsCollectionEditor with the TestCells.
[EditorAttribute(typeof(System.Web.UI.Design.WebControls.
TableCellsCollectionEditor),
typeof(UITypeEditor))]
public TableCellCollection TestCells
{
get { return cells; }
} // TestCells
Private cells As TableCellCollection
' Associate the TableCellsCollectionEditor with the TestCells.
<EditorAttribute( GetType(System.Web.UI.Design.WebControls. _
TableCellsCollectionEditor), _
GetType(UITypeEditor))> _
Public ReadOnly Property TestCells() As TableCellCollection
Get
Return cells
End Get
End Property ' TestCells
建構函式
TableCellsCollectionEditor(Type) |
初始化 TableCellsCollectionEditor 類別的新執行個體。 |
屬性
CollectionItemType |
取得集合中每個項目的資料型別。 (繼承來源 CollectionEditor) |
CollectionType |
取得集合物件 (Collection Object) 的資料型別。 (繼承來源 CollectionEditor) |
Context |
取得指示目前內容的型別描述項。 (繼承來源 CollectionEditor) |
HelpTopic |
當按下編輯器的對話方塊 [說明] 按鈕或 F1 鍵時,取得 Help 關鍵字以顯示說明主題或主題清單。 (繼承來源 CollectionEditor) |
IsDropDownResizable |
取得值,表示使用者是否能夠調整下拉式編輯器的大小。 (繼承來源 UITypeEditor) |
NewItemTypes |
取得可為這個集合建立的項目之可用型別。 (繼承來源 CollectionEditor) |