diff --git a/Document-Processing-toc.html b/Document-Processing-toc.html
index 2027461d5..44e044e35 100644
--- a/Document-Processing-toc.html
+++ b/Document-Processing-toc.html
@@ -6668,6 +6668,9 @@
How to retrieve the name of the chart in an Excel worksheet?
+
+ Does XlsIO support pasting a worksheet from the clipboard?
+
diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-support-pasting-worksheet-from-clipboard.md b/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-support-pasting-worksheet-from-clipboard.md
new file mode 100644
index 000000000..815fc1647
--- /dev/null
+++ b/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-support-pasting-worksheet-from-clipboard.md
@@ -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.