From a68743c001a4eef8fd60d52d6258435c815c4233 Mon Sep 17 00:00:00 2001 From: KarthikaSF4773 Date: Thu, 13 Nov 2025 16:02:25 +0530 Subject: [PATCH 1/3] 992493-NoteRelativeRange --- .../Excel/Excel-Library/NET/Worksheet-Cells-Manipulation.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Document-Processing/Excel/Excel-Library/NET/Worksheet-Cells-Manipulation.md b/Document-Processing/Excel/Excel-Library/NET/Worksheet-Cells-Manipulation.md index adeb28de7..f03c965ec 100644 --- a/Document-Processing/Excel/Excel-Library/NET/Worksheet-Cells-Manipulation.md +++ b/Document-Processing/Excel/Excel-Library/NET/Worksheet-Cells-Manipulation.md @@ -126,6 +126,8 @@ The following code example illustrates how to access the range relatively to the N> Here row and column indexes in the range are "one-based". +N> When **ExcelRangeIndexerMode** is set to **Relative**, only numeric index access is relative to the specified range. In this mode, row and column indexes are one-based and reference cells within the range. Address-based access using the A1 reference style (example A1, B5) always points to the worksheet and returns results from the worksheet origin rather than from the specified range. + {% tabs %} {% highlight c# tabtitle="C# [Cross-platform]" playgroundButtonLink="https://raw.githubusercontent.com/SyncfusionExamples/XlsIO-Examples/master/Editing%20Excel%20cells/Access%20Relative%20Range/.NET/Access%20Relative%20Range/Access%20Relative%20Range/Program.cs,180" %} using (ExcelEngine excelEngine = new ExcelEngine()) From 393ab65a1dbb2e879dd4fb0b8614491ea1b1525a Mon Sep 17 00:00:00 2001 From: MOHAN CHANDRAN <93247949+Mohan2401@users.noreply.github.com> Date: Mon, 17 Nov 2025 09:51:44 +0530 Subject: [PATCH 2/3] Update Worksheet-Cells-Manipulation.md --- .../Excel/Excel-Library/NET/Worksheet-Cells-Manipulation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Document-Processing/Excel/Excel-Library/NET/Worksheet-Cells-Manipulation.md b/Document-Processing/Excel/Excel-Library/NET/Worksheet-Cells-Manipulation.md index f03c965ec..875efe44a 100644 --- a/Document-Processing/Excel/Excel-Library/NET/Worksheet-Cells-Manipulation.md +++ b/Document-Processing/Excel/Excel-Library/NET/Worksheet-Cells-Manipulation.md @@ -126,7 +126,7 @@ The following code example illustrates how to access the range relatively to the N> Here row and column indexes in the range are "one-based". -N> When **ExcelRangeIndexerMode** is set to **Relative**, only numeric index access is relative to the specified range. In this mode, row and column indexes are one-based and reference cells within the range. Address-based access using the A1 reference style (example A1, B5) always points to the worksheet and returns results from the worksheet origin rather than from the specified range. +N> When **ExcelRangeIndexerMode** is set to **Relative**, only numeric index access is relative to the specified range. In this mode, row and column indexes are one-based and reference cells within the range. Cell name bases references (example A1, B5) always points to the worksheet and returns results from the worksheet origin rather than from the specified range. {% tabs %} {% highlight c# tabtitle="C# [Cross-platform]" playgroundButtonLink="https://raw.githubusercontent.com/SyncfusionExamples/XlsIO-Examples/master/Editing%20Excel%20cells/Access%20Relative%20Range/.NET/Access%20Relative%20Range/Access%20Relative%20Range/Program.cs,180" %} @@ -1076,4 +1076,4 @@ A complete working example to clear cell content in an Excel worksheet in C# is The [IRange](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IRange.html) interface offers a robust collection of properties for in-depth manipulation and management of Excel worksheet ranges. -With the Syncfusion® Excel Library, you can perform various operations under IRange in an Excel worksheet using C#. Click [here](https://help.syncfusion.com/document-processing/excel/excel-library/net/cells-manipulation/list-of-apis-under-irange) for more details. \ No newline at end of file +With the Syncfusion® Excel Library, you can perform various operations under IRange in an Excel worksheet using C#. Click [here](https://help.syncfusion.com/document-processing/excel/excel-library/net/cells-manipulation/list-of-apis-under-irange) for more details. From 6f81f25b8b0125f73145da9ed4671fbda858d909 Mon Sep 17 00:00:00 2001 From: MOHAN CHANDRAN <93247949+Mohan2401@users.noreply.github.com> Date: Mon, 17 Nov 2025 09:52:14 +0530 Subject: [PATCH 3/3] Update Worksheet-Cells-Manipulation.md --- .../Excel/Excel-Library/NET/Worksheet-Cells-Manipulation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Document-Processing/Excel/Excel-Library/NET/Worksheet-Cells-Manipulation.md b/Document-Processing/Excel/Excel-Library/NET/Worksheet-Cells-Manipulation.md index 875efe44a..2c30d15b9 100644 --- a/Document-Processing/Excel/Excel-Library/NET/Worksheet-Cells-Manipulation.md +++ b/Document-Processing/Excel/Excel-Library/NET/Worksheet-Cells-Manipulation.md @@ -126,7 +126,7 @@ The following code example illustrates how to access the range relatively to the N> Here row and column indexes in the range are "one-based". -N> When **ExcelRangeIndexerMode** is set to **Relative**, only numeric index access is relative to the specified range. In this mode, row and column indexes are one-based and reference cells within the range. Cell name bases references (example A1, B5) always points to the worksheet and returns results from the worksheet origin rather than from the specified range. +N> When **ExcelRangeIndexerMode** is set to **Relative**, only numeric index access is relative to the specified range. In this mode, row and column indexes are one-based and reference cells within the range. Cell name based references (example A1, B5) always points to the worksheet and returns results from the worksheet origin rather than from the specified range. {% tabs %} {% highlight c# tabtitle="C# [Cross-platform]" playgroundButtonLink="https://raw.githubusercontent.com/SyncfusionExamples/XlsIO-Examples/master/Editing%20Excel%20cells/Access%20Relative%20Range/.NET/Access%20Relative%20Range/Access%20Relative%20Range/Program.cs,180" %}