CellRow Class
See Also  Members  
Xceed.Grid Assembly > Xceed.Grid Namespace : CellRow Class

Represents a row that contains a cell for each column in the grid.

Object Model














Syntax

Visual Basic (Declaration) 
<DescriptionAttribute("A row in the grid or group.")>
<DesignerAttribute(DesignerBaseTypeName="System.ComponentModel.Design.IDesigner", DesignerTypeName="Xceed.Grid.Design.CellRowDesigner,Xceed.Grid.Design,Version=3.8.8426.00005,Culture=neutral,PublicKeyToken=ba83ff368b7563c6")>
<DefaultEventAttribute("CellValueChanged")>
<ToolboxItemAttribute(ToolboxItemType=, ToolboxItemTypeName="")>
Public MustInherit Class CellRow 
   Inherits Row
C# 
[DescriptionAttribute("A row in the grid or group.")]
[DesignerAttribute(DesignerBaseTypeName="System.ComponentModel.Design.IDesigner", DesignerTypeName="Xceed.Grid.Design.CellRowDesigner,Xceed.Grid.Design,Version=3.8.8426.00005,Culture=neutral,PublicKeyToken=ba83ff368b7563c6")]
[DefaultEventAttribute("CellValueChanged")]
[ToolboxItemAttribute(ToolboxItemType=, ToolboxItemTypeName="")]
public abstract class CellRow : Row 

Remarks

Every row that contains cells will contain a cell for each column in the grid. Each of these cells will always have the same index, name and width as its parent column.

There are 4 specializations of the CellRow class: the DataRow class which represents a row that is bound to a data source or user provided data, the ValueRow class which contains a cell for each column in the grid but is not bound to a data source, the InsertionRow class which contains a cell for each column in the grid and is used by the end-user to insert new DataRow objects into the grid and the ColumnManagerRow class which represents a row that is used to manage the columns in the grid, and the SummaryRow class which represents a row used to display the results of statistical functions.

Rows that do not contain cells can be used to display labels or manage other rows in the grid. Xceed Grid for .NET provides various cell-less row classes: the TextRow class which is used to display text, the GroupManagerRow class which is used to manage groups, the GroupByRow class which represents a row in which ColumnManagerCell objects can be drag and dropped in order to group a grid's data rows and the SpacerRow class which represents a row that is used to provide spacing between rows and detail grids in the grid. All of these rows derive directly from the Row class.

Inheritance Hierarchy

System.Object
   System.MarshalByRefObject
      Xceed.Grid.GridElementBase
         Xceed.Grid.GridElement
            Xceed.Grid.VisualGridElement
               Xceed.Grid.Row
                  Xceed.Grid.CellRow
                     Xceed.Grid.ColumnManagerRow
                     Xceed.Grid.DataRow
                     Xceed.Grid.InsertionRow
                     Xceed.Grid.SummaryRow
                     Xceed.Grid.ValueRow

Requirements

Supported Operating Systems: Windows 2000 Service Pack 3; Windows 98; Windows 98 Second Edition; Windows ME; Windows Server 2003; Windows Vista Business; Windows Vista Business 64-bit edition; Windows Vista Enterprise; Windows Vista Enterprise 64-bit edition; Windows Vista Home Basic; Windows Vista Home Basic 64-bit edition; Windows Vista Home Premium; Windows Vista Home Premium 64-bit edition; Windows Vista Starter; Windows Vista Ultimate; Windows Vista Ultimate 64-bit edition; Windows XP Service Pack 2

Supported Frameworks: Microsoft .NET Framework version 2.0; Microsoft .NET Framework version 3.0

See Also