FlexGrid for WPF
Cells プロパティ (CellRange)
使用例 

C1.WPF.FlexGrid.4.6.2 アセンブリ > C1.WPF.FlexGrid 名前空間 > CellRange 構造体 : Cells プロパティ
この CellRange内のセルの反復処理に使用できる System.Collections.IEnumerableを取得します。
シンタックス
'宣言
 
Public ReadOnly Property Cells As System.Collections.Generic.IEnumerable(Of CellRange)
public System.Collections.Generic.IEnumerable<CellRange> Cells {get;}
使用例
以下のコードは、 Cellsプロパティを使用して、指定されたセル範囲にすべての整数値を追加する方法を示します。
var total = 0;
foreach (var cell in rng.Cells)
{
  var value = grid[cell.Row, cell.Column];
  if (value is int)
  {
    total += (int)value;
  }
}
参照

CellRange 構造体
CellRange メンバ