FarPoint.Web.Spread Assembly > FarPoint.Web.Spread.Model Namespace > CellRange Class > CellRange Constructor : CellRange Constructor(Int32,Int32,Int32,Int32) |
'Declaration Public Function New( _ ByVal row As Integer, _ ByVal column As Integer, _ ByVal rowCount As Integer, _ ByVal columnCount As Integer _ )
FarPoint.Web.Spread.Model.CellRange range=new FarPoint.Web.Spread.Model.CellRange(0,0,4,4); bool b; FpSpread1.ActiveSheetView.ColumnCount=10; FpSpread1.ActiveSheetView.RowCount=10; FpSpread1.ActiveSheetView.AddSpanCell(range.Row,range.Column,range.RowCount,range.ColumnCount); b=range.Contains(1,1); ListBox1.Items.Add(Convert.ToString(b));
Dim range As New FarPoint.Web.Spread.Model.CellRange(0,0,4,4) Dim b As Boolean FpSpread1.ActiveSheetView.ColumnCount=10 FpSpread1.ActiveSheetView.RowCount=10 FpSpread1.ActiveSheetView.AddSpanCell(range.Row,range.Column,range.RowCount,range.ColumnCount) b=range.Contains(1,1) ListBox1.Items.Add(b)
Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional