FlexGrid for UWP/WinRT
Cells プロパティ (CellRange)
使用例 

この 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;
}
}
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

参照

関連項目

CellRange 構造体
CellRange メンバ

Send Feedback