FarPoint.Win.Spread アセンブリ > FarPoint.Win.Spread.Model 名前空間 > CellRange クラス > Contains メソッド : Contains(Int32,Int32) メソッド |
FarPoint.Win.Spread.Model.CellRange cr = new FarPoint.Win.Spread.Model.CellRange(0, 0, 3, 3); bool b; b = cr.Contains(2, 2); if (b == true) { fpSpread1.ActiveSheet.Cells(cr.Row, cr.Column, cr.RowCount - 1, cr.ColumnCount - 1).BackColor = Color.Yellow; }
Dim cr As New FarPoint.Win.Spread.Model.CellRange(0, 0, 3, 3) Dim b As Boolean b = cr.Contains(2, 2) If b = True Then FpSpread1.ActiveSheet.Cells(cr.Row, cr.Column, cr.RowCount - 1, cr.ColumnCount - 1).BackColor = Color.Yellow End If