SPREAD for WPF 3.0J - GcSpreadGrid
Value プロパティ (Cell)
使用例 

GrapeCity.Windows.SpreadGrid 名前空間 > Cell クラス : Value プロパティ
セルの値を取得または設定します。
シンタックス
'宣言
 
Public Property Value As Object
public object Value {get; set;}

プロパティ値

セルの値。既定値は null 参照 (Visual Basicでは Nothing) です。
使用例
このサンプルは、セルに値を設定し Formula プロパティに2つのセルの値を合計する数式を設定します。
Cell acell, mycell, urcell;
acell = gcSpreadGrid1.Cells[0, 0];
mycell = gcSpreadGrid1.Cells[2, 2];
urcell = gcSpreadGrid1.Cells[2, 3];

mycell.Value = 10;
urcell.Value = 10;
acell.Formula = "SUM(C3, D3)";
Dim acell As Cell, mycell As Cell, urcell As Cell
acell = gcSpreadGrid1.Cells(0, 0)
mycell = gcSpreadGrid1.Cells(2, 2)
urcell = gcSpreadGrid1.Cells(2, 3)

mycell.Value = 10
urcell.Value = 10
acell.Formula = "SUM(C3, D3)"
参照

Cell クラス
Cell メンバ