FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class : CopyRange(Int32,Int32,Int32,Int32,Int32,Int32,Boolean) Method |
'Declaration Public Sub CopyRange( _ ByVal fromRow As Integer, _ ByVal fromColumn As Integer, _ ByVal toRow As Integer, _ ByVal toColumn As Integer, _ ByVal rowCount As Integer, _ ByVal columnCount As Integer, _ ByVal dataOnly As Boolean _ )
Exception | Description |
---|---|
System.InvalidOperationException | Operation is not valid; cannot copy entire sheet of cells |
System.InvalidOperationException | Operation is not valid; cannot copy entire columns over partial columns |
System.InvalidOperationException | Operation is not valid; cannot copy entire rows over partial rows |
System.InvalidOperationException | Operation is not valid; cannot copy a range of cells over part of a spanned cell |
fpSpread1.Sheets[0].Cells[0, 0].Text = "test"; fpSpread1.Sheets[0].Cells[0, 1].Text = "B"; fpSpread1.Sheets[0].Cells[0, 2].Text = "C"; fpSpread1.Sheets[0].Cells[0, 2].BackColor = Color.Crimson; private void button1_Click(object sender, EventArgs e) { fpSpread1.Sheets[0].CopyRange(0, 0, 5, 0, 3, 3, false); }
FpSpread1.Sheets(0).Cells(0, 0).Text = "test" FpSpread1.Sheets(0).Cells(0, 1).Text = "B" FpSpread1.Sheets(0).Cells(0, 2).Text = "C" FpSpread1.Sheets(0).Cells(0, 2).BackColor = Color.Crimson Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click FpSpread1.Sheets(0).CopyRange(0, 0, 5, 0, 3, 3, False) End Sub
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10