Assembly: Dapfor.Wpf (in Dapfor.Wpf.dll) Version: 4.1.0.26317 (4.1.0.26317)
Syntax
C# |
---|
public Row Add( IList collection ) |
Visual Basic |
---|
Public Function Add ( collection As IList ) As Row |
Visual C++ |
---|
public: Row^ Add( IList^ collection ) |
F# |
---|
member Add : collection : IList -> Row |
Parameters
- collection
- Type: System.Collections..::..IList
Data object.
Return Value
Type: RowA new Row, having this row as the parent.
Remarks
Data can be added into the grid via GridControl.Rows.Add(object dataObject) method call. This method returns object of Row type. To build a hierarchy, it is enough to call the Row.Add(object) method, which in turn returns a new Row object. This way a programmer can build almost any data hierarchy in the GridControl. All headers and rows have their own zero-based hierarchical level that is defined by Header.Level and Row.Level properties. To display data in every row, GridControl takes header of the same level as that row. However, if that level doesn't have a header, the header for the previous hierarchical level is used. In other words, if only one header is present, the grid will behave like Microsoft Windows Explorer.
Copy | |
---|---|
void PopulateGrid(GridControl grid) { //Add a new object to the scrollable rows on the top hierarchical level Row row = grid.Rows.Add(new SomeObject()); //Add some children to the already inserted row row.Add(new object[] { "Mercedes", Colors.Black, 25000d }); row.Add(new object[] { "BMW", Colors.White, 35000d }); } |