FlexGrid for WinForms
Item Property (C1FlexGridBase)
Example 



Gets or sets the data in a grid cell.
Overload List
OverloadDescription
Item(Int32,Int32)Gets or sets the data in a grid cell.  
Item(Int32,String)Gets or sets the data in a grid cell.  
Remarks

This is one of the indexers you can use to get or set the data stored in grid cells.

You can index cells using the row and column indices or using the row index and column name.

Using integer indices is more efficient, because the grid doesn't have to look up the column. Using column names is more flexible, because references remain valid even if the user moves columns to a new position.

When assigning a value to a cell, the grid tries to convert it into the type specified for the column (see the RowCol.DataType property). If the grid can't convert the value, it fires the GridError event and the cell retains its original value.

Example
The example below creates a column and assigns it a name, then sets the value of a cell using the column index and retrieves the value using the column name:
// create a column, assign it a name and get the new index
Column myCol = flex.Cols.Add();
myCol.Name = "address";
myCol.DataType = typeof(string);
int colIndex = myCol.Index;
            
// assign a value to a cell using cell coordinates:
flex[1, colIndex] = "555, Broadway";
            
// get the value using the column name
string address = (string)flex[1, "address"];
MessageBox.Show("The address is " + address);
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

C1FlexGridBase Class
C1FlexGridBase Members

 

 


Copyright (c) GrapeCity, inc. All rights reserved.

Send Feedback