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 |
获取集合对象的数据类型。 (继承自 CollectionEditor) |
Context |
获取指示当前上下文的类型说明符。 (继承自 CollectionEditor) |
HelpTopic |
在用户按下编辑器对话框中的“帮助”按钮或 F1 键时,获取“帮助”关键字以显示“帮助”主题或主题列表。 (继承自 CollectionEditor) |
IsDropDownResizable |
获取一个值,该值指示是否应由用户调整下拉编辑器的大小。 (继承自 UITypeEditor) |
NewItemTypes |
获取可为此集合创建的项的可用类型。 (继承自 CollectionEditor) |