Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Document-Processing-toc.html
Original file line number Diff line number Diff line change
Expand Up @@ -6668,6 +6668,9 @@
<li>
<a href="/document-processing/excel/excel-library/net/faqs/how-to-retrieve-the-name-of-the-chart-in-an-Excel-worksheet">How to retrieve the name of the chart in an Excel worksheet?</a>
</li>
<li>
<a href="/document-processing/excel/excel-library/net/faqs/does-xlsio-support-pasting-worksheet-from-clipboard">Does XlsIO support pasting a worksheet from the clipboard?</a>
</li>
</ul>
</li>
</ul>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
title: pasting a worksheet from the clipboard | Syncfusion
description: Explains whether Syncfusion XlsIO provides support for pasting an entire worksheet directly from the system clipboard into a workbook.
platform: document-processing
control: XlsIO
documentation: UG
---

# Does XlsIO support pasting a worksheet from the clipboard?

No, Syncfusion XlsIO does not support pasting an entire worksheet from the clipboard, and there are no current plans to implement this feature.

If you need to move or duplicate worksheet content programmatically, consider the following alternatives:

- Use the `IWorksheet.Copy()` or `IWorksheet.Move()` methods to duplicate or relocate sheets within a workbook.
- Read clipboard data in your application (outside XlsIO), then write the values or ranges into the target worksheet using XlsIO APIs.