TableCellsCollectionEditor Class
Provides a user interface for editing the collection of cells in a table row.
For a list of all members of this type, see TableCellsCollectionEditor Members.
System.Object
System.Drawing.Design.UITypeEditor
System.ComponentModel.Design.CollectionEditor
System.Web.UI.Design.WebControls.TableCellsCollectionEditor
[Visual Basic] Public Class TableCellsCollectionEditor Inherits CollectionEditor [C#] public class TableCellsCollectionEditor : CollectionEditor [C++] public __gc class TableCellsCollectionEditor : public CollectionEditor [JScript] public class TableCellsCollectionEditor extends CollectionEditor
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Example
[Visual Basic] The following code example uses the EditorAttribute to associate the TableCellsCollectionEditor class and the UITypeEditor class (the collection editor's base class) with a custom TestCells property.
[Visual Basic]
Private cells As TableCellCollection
' Use the TableCellsCollectionEditor to allow
' property editing on a design surface.
<EditorAttribute( _
GetType(System.Web.UI.Design.WebControls.TableCellsCollectionEditor), _
GetType(UITypeEditor))> _
Public ReadOnly Property TestCells() As TableCellCollection
Get
Return cells
End Get
End Property
[C#, C++, JScript] No example is available for C#, C++, or JScript. To view a Visual Basic example, click the Language Filter button
in the upper-left corner of the page.
Requirements
Namespace: System.Web.UI.Design.WebControls
Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family
Assembly: System.Design (in System.Design.dll)
See Also
TableCellsCollectionEditor Members | System.Web.UI.Design.WebControls Namespace