| C1.Xaml.FlexGrid アセンブリ > C1.Xaml.FlexGrid 名前空間 > CellRange 構造体 : Cells プロパティ |
'宣言 Public ReadOnly Property Cells As System.Collections.Generic.IEnumerable(Of CellRange)
public System.Collections.Generic.IEnumerable<CellRange> Cells {get;}
var total = 0; foreach (var cell in rng.Cells) { var value = grid[cell.Row, cell.Column]; if (value is int) { total += (int)value; } }