Articles in this section
Category / Section

How range Copy To method overloads on WinForms XIsIO?

2 mins read

The Range CopyTo method has overloads for copying the Source Worksheet range to Destination Worksheet range. Please refer the below code snippet which illustrates the use of WinForms Excel.

C#

IWorkbook sourceWorkbook = application.Workbooks.Open("SourceWorkBook.xlsx");
IWorkbook destinationWorkbook =   application.Workbooks.Open("DestinationWorkBook.xlsx");
IWorksheet SourceWorksheet = sourceWorkbook.Worksheets[0];
IWorksheet DestinationWorksheet = destinationWorkbook.Worksheets[0];
IRange source = SourceWorksheet.Range[1,1,10,10];
IRange des = DestinationWorksheet.Range[11,11,20,20];
source.CopyTo(des);
DestinationWorksheet.ShowRow(des.LastRow, true);
destinationWorkbook.SaveAs("destination.xlsx");
sourceWorkbook.Close();
destinationWorkbook.Close();
excelEngine.Dispose();            

VB

IWorkbook sourceWorkbook = application.Workbooks.Open("SourceWorkBook.xlsx");
IWorkbook destinationWorkbook =    application.Workbooks.Open("DestinationWorkBook.xlsx");
Dim SourceWorksheet As IWorksheet = SourceWorkbook.Worksheets(0)
Dim DestinationWorksheet As IWorksheet = DestinationWorkbook.Worksheets(0)
Dim source As IRange = SourceWorksheet.Range(1,1,10,10)
Dim des As IRange = DestinationWorksheet.Range(11,11,20,20)
source.CopyTo(des)
DestinationWorksheet.ShowRow(des.LastRow, true);
destinationWorkbook.SaveAs("destination.xlsx");
sourceWorkbook.Close();
destinationWorkbook.Close();
excelEngine.Dispose();

Conclusion

I hope you enjoyed learning how range Copy To method overloads on WinForms XIsIO.

You can refer to our WinForms Excel feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our WinForms Excel example to understand how to create and manipulate data.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!



Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied