diff --git a/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Appearance.md b/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Appearance.md
index ff3154d4e..61c8a532a 100644
--- a/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Appearance.md
+++ b/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Appearance.md
@@ -22,8 +22,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"));
IWorksheet worksheet = workbook.Worksheets[0];
IChart chart = worksheet.Charts[0];
@@ -50,13 +49,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
chartFillImpl2.FillType = ExcelFillType.SolidColor;
chartFillImpl2.ForeColor = Color.FromArgb(143, 170, 220); ;
- //Saving the workbook as streams
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
-
- //Dispose streams
- outputStream.Dispose();
- inputStream.Dispose();
+ //Saving the workbook
+ workbook.SaveAs(Path.GetFullPath("Output/Output.xlsx"));
}
{% endhighlight %}
@@ -147,8 +141,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream, ExcelOpenType.Automatic);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"), ExcelOpenType.Automatic);
IWorksheet worksheet = workbook.Worksheets[0];
IChart chart = worksheet.Charts[0];
@@ -183,13 +176,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
chartFillImpl2.ForeColor = Color.White;
chartFillImpl2.Pattern = ExcelGradientPattern.Pat_5_Percent;
- //Saving the workbook as stream
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
-
- //Dispose streams
- outputStream.Dispose();
- inputStream.Dispose();
+ //Saving the workbook
+ workbook.SaveAs(Path.GetFullPath("Output/Output.xlsx"));
}
{% endhighlight %}
@@ -295,8 +283,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream, ExcelOpenType.Automatic);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"), ExcelOpenType.Automatic);
IWorksheet worksheet = workbook.Worksheets[0];
IChart chart = worksheet.Charts[0];
@@ -337,13 +324,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
chartFillImpl2.GradientStops.Add(gradientStopImpl3);
chartFillImpl2.GradientStops.Add(gradientStopImpl4);
- //Saving the workbook as stream
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
-
- //Dispose streams
- outputStream.Dispose();
- inputStream.Dispose();
+ //Saving the workbook
+ workbook.SaveAs(Path.GetFullPath("Output/Output.xlsx"));
}
{% endhighlight %}
@@ -460,8 +442,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"));
IWorksheet worksheet = workbook.Worksheets[0];
IChart chart = worksheet.Charts[0];
@@ -493,15 +474,12 @@ using (ExcelEngine excelEngine = new ExcelEngine())
serie1.SerieFormat.Fill.UserPicture(image2, "Image");
serie2.SerieFormat.Fill.UserPicture(image2, "Image");
- //Saving the workbook as stream
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
+ //Saving the workbook
+ workbook.SaveAs(Path.GetFullPath("Output/Output.xlsx"));
//Dispose streams
- outputStream.Dispose();
imageStream1.Dispose();
imageStream2.Dispose();
- inputStream.Dispose();
}
{% endhighlight %}
@@ -587,8 +565,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream, ExcelOpenType.Automatic);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"), ExcelOpenType.Automatic);
IWorksheet worksheet = workbook.Worksheets[0];
IChart chart = worksheet.Charts[0];
@@ -607,13 +584,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
//Set no fill to series
serie1.SerieFormat.Fill.Visible = false;
- //Saving the workbook as stream
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
-
- //Dispose streams
- outputStream.Dispose();
- inputStream.Dispose();
+ //Saving the workbook
+ workbook.SaveAs(Path.GetFullPath("Output/Output.xlsx"));
}
{% endhighlight %}
@@ -979,12 +951,8 @@ The following code example illustrates how to apply 3D settings such as rotation
#region Save
//Saving the workbook
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
+ workbook.SaveAs(Path.GetFullPath("Output/Chart.xlsx"));
#endregion
-
- //Dispose streams
- outputStream.Dispose();
}
{% endhighlight %}
@@ -1118,8 +1086,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"));
IWorksheet worksheet = workbook.Worksheets[0];
//Adding pie chart in the worksheet
@@ -1146,13 +1113,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
#region Save
//Saving the workbook
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
+ workbook.SaveAs(Path.GetFullPath("Output/Chart.xlsx"));
#endregion
-
- //Dispose streams
- outputStream.Dispose();
- inputStream.Dispose();
}
{% endhighlight %}
@@ -1218,8 +1180,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"));
IWorksheet worksheet = workbook.Worksheets[0];
//Adding chart in the workbook
@@ -1244,13 +1205,10 @@ using (ExcelEngine excelEngine = new ExcelEngine())
#region Save
//Saving the workbook
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
+ workbook.SaveAs(Path.GetFullPath("Output/Chart.xlsx"));
#endregion
//Dispose streams
- outputStream.Dispose();
- inputStream.Dispose();
imageStream.Dispose();
}
{% endhighlight %}
@@ -1371,12 +1329,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
#region Save
//Saving the workbook
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
+ workbook.SaveAs(Path.GetFullPath("Output/Chart.xlsx"));
#endregion
-
- //Dispose streams
- outputStream.Dispose();
}
{% endhighlight %}
diff --git a/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Area.md b/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Area.md
index 09c5bb3ec..0ff07ed2d 100644
--- a/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Area.md
+++ b/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Area.md
@@ -86,8 +86,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"));
IWorksheet sheet = workbook.Worksheets[0];
IChartShape chart = sheet.Charts[0];
@@ -105,13 +104,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
chartArea.Fill.BackColor = Color.FromArgb(205, 217, 234);
chartArea.Fill.ForeColor = Color.White;
- //Saving the workbook as stream
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.ReadWrite);
- workbook.SaveAs(outputStream);
-
- //Dispose streams
- outputStream.Dispose();
- inputStream.Dispose();
+ //Saving the workbook
+ workbook.SaveAs(Path.GetFullPath("Output/Output.xlsx"));
}
{% endhighlight %}
diff --git a/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Axis.md b/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Axis.md
index ece58ec12..5360d2670 100644
--- a/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Axis.md
+++ b/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Axis.md
@@ -341,8 +341,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"));
IWorksheet sheet = workbook.Worksheets[0];
IChartShape chart = sheet.Charts[0];
@@ -410,13 +409,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
//Hiding minor gridlines
chart.PrimaryValueAxis.HasMinorGridLines = false;
- //Saving the workbook as stream
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.ReadWrite);
- workbook.SaveAs(outputStream);
-
- //Dispose streams
- outputStream.Dispose();
- inputStream.Dispose();
+ //Saving the workbook
+ workbook.SaveAs(Path.GetFullPath("Output/Output.xlsx"));
}
{% endhighlight %}
diff --git a/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Data-Labels.md b/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Data-Labels.md
index 792c0c949..c89c7d19e 100644
--- a/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Data-Labels.md
+++ b/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Data-Labels.md
@@ -158,8 +158,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"));
IWorksheet worksheet = workbook.Worksheets[0];
IChartShape chart = worksheet.Charts[0];
@@ -191,13 +190,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
IChartDataLabels dataLabel = chart.Series[0].DataPoints.DefaultDataPoint.DataLabels;
(dataLabel as ChartDataLabelsImpl).NumberFormat = "#,##0.00";
- //Saving the workbook as stream
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.ReadWrite);
- workbook.SaveAs(outputStream);
-
- //Dispose streams
- outputStream.Dispose();
- inputStream.Dispose();
+ //Saving the workbook
+ workbook.SaveAs(Path.GetFullPath("Output/Output.xlsx"));
}
{% endhighlight %}
@@ -345,12 +339,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
#region Save
//Saving the workbook
- FileStream outputStream = new FileStream(Path.GetFullPath("Output.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
+ workbook.SaveAs("Output.xlsx");
#endregion
-
- //Dispose streams
- outputStream.Dispose();
}
{% endhighlight %}
diff --git a/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Legend.md b/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Legend.md
index b557a5464..77b9880e6 100644
--- a/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Legend.md
+++ b/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Legend.md
@@ -228,8 +228,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"));
IWorksheet worksheet = workbook.Worksheets[0];
IChartShape chart = worksheet.Charts[0];
@@ -264,11 +263,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
//Set Legend without overlapping the chart
chart.Legend.IncludeInLayout = true;
- //Saving the workbook as stream
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.ReadWrite);
- workbook.SaveAs(outputStream);
- outputStream.Dispose();
- inputStream.Dispose();
+ //Saving the workbook
+ workbook.SaveAs(Path.GetFullPath("Output/Output.xlsx"));
}
{% endhighlight %}
diff --git a/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Plot-Area.md b/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Plot-Area.md
index d20e5309f..e1c7a4b0f 100644
--- a/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Plot-Area.md
+++ b/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Plot-Area.md
@@ -130,8 +130,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"));
IWorksheet sheet = workbook.Worksheets[0];
IChartShape chart = sheet.Charts[0];
@@ -152,13 +151,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
//Set the position
chartPlotArea.Layout.Left = 5;
- //Saving the workbook as stream
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.ReadWrite);
- workbook.SaveAs(outputStream);
-
- //Dispose streams
- outputStream.Dispose();
- inputStream.Dispose();
+ //Saving the workbook
+ workbook.SaveAs(Path.GetFullPath("Output/Output.xlsx"));
}
{% endhighlight %}
diff --git a/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Series.md b/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Series.md
index 836698ed8..2b59fd6b4 100644
--- a/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Series.md
+++ b/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Series.md
@@ -151,8 +151,7 @@ using (ExcelEngine engine = new ExcelEngine())
{
IApplication application = engine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"));
IWorksheet sheet = workbook.Worksheets[0];
//Create a Chart
@@ -185,13 +184,8 @@ using (ExcelEngine engine = new ExcelEngine())
#region Save
//Saving the workbook
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
+ workbook.SaveAs(Path.GetFullPath("Output/Chart.xlsx"));
#endregion
-
- //Dispose streams
- outputStream.Dispose();
- inputStream.Dispose();
}
{% endhighlight %}
diff --git a/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Title.md b/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Title.md
index 692b1bebd..f12c4d0c1 100644
--- a/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Title.md
+++ b/Document-Processing/Excel/Excel-Library/NET/Charts/Chart-Title.md
@@ -116,8 +116,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream, ExcelOpenType.Automatic);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"), ExcelOpenType.Automatic);
IWorksheet sheet = workbook.Worksheets[0];
IChartShape chart = sheet.Charts[0];
@@ -135,11 +134,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
//Manually resizing chart title area using Layout.
chart.ChartTitleArea.Layout.Left = 20;
- //Saving the workbook as stream
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Output.xlsx"), FileMode.Create, FileAccess.ReadWrite);
- workbook.SaveAs(outputStream);
- outputStream.Dispose();
- inputStream.Dispose();
+ //Saving the workbook
+ workbook.SaveAs(Path.GetFullPath("Output/Output.xlsx"));
}
{% endhighlight %}
diff --git a/Document-Processing/Excel/Excel-Library/NET/Working-with-Charts.md b/Document-Processing/Excel/Excel-Library/NET/Working-with-Charts.md
index a6ec7c680..910e5d646 100644
--- a/Document-Processing/Excel/Excel-Library/NET/Working-with-Charts.md
+++ b/Document-Processing/Excel/Excel-Library/NET/Working-with-Charts.md
@@ -24,8 +24,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream, ExcelOpenType.Automatic);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"), ExcelOpenType.Automatic);
IWorksheet sheet = workbook.Worksheets[0];
//Create a Chart
@@ -59,13 +58,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
#region Save
//Saving the workbook
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
+ workbook.SaveAs(Path.GetFullPath("Output/Chart.xlsx"));
#endregion
-
- //Dispose streams
- outputStream.Dispose();
- inputStream.Dispose();
}
{% endhighlight %}
@@ -151,12 +145,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
#region Save
//Saving the workbook
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
+ workbook.SaveAs(Path.GetFullPath("Output/Chart.xlsx"));
#endregion
-
- //Dispose streams
- outputStream.Dispose();
}
{% endhighlight %}
@@ -274,12 +264,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
#region Save
//Saving the workbook
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
+ workbook.SaveAs(Path.GetFullPath("Output/Chart.xlsx"));
#endregion
-
- //Dispose streams
- outputStream.Dispose();
}
{% endhighlight %}
@@ -407,8 +393,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream, ExcelOpenType.Automatic);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"), ExcelOpenType.Automatic);
IWorksheet sheet = workbook.Worksheets[0];
//Add SparklineGroups
@@ -426,13 +411,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
#region Save
//Saving the workbook
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Sparklines.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
+ workbook.SaveAs(Path.GetFullPath("Output/Sparklines.xlsx"));
#endregion
-
- //Dispose streams
- outputStream.Dispose();
- inputStream.Dispose();
}
{% endhighlight %}
@@ -502,8 +482,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream, ExcelOpenType.Automatic);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"), ExcelOpenType.Automatic);
IWorksheet sheet = workbook.Worksheets[0];
//Edit Sparklines
@@ -517,13 +496,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
#region Save
//Saving the workbook
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/EditSparklines.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
+ workbook.SaveAs(Path.GetFullPath("Output/EditSparklines.xlsx"));
#endregion
-
- //Dispose streams
- outputStream.Dispose();
- inputStream.Dispose();
}
{% endhighlight %}
@@ -579,8 +553,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream, ExcelOpenType.Automatic);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"), ExcelOpenType.Automatic);
IWorksheet sheet = workbook.Worksheets[0];
ISparklineGroup sparklineGroup = sheet.SparklineGroups[0];
@@ -597,13 +570,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
#region Save
//Saving the workbook
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/RemoveSparklines.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
+ workbook.SaveAs(Path.GetFullPath("Output/RemoveSparklines.xlsx"));
#endregion
-
- //Dispose streams
- outputStream.Dispose();
- inputStream.Dispose();
}
{% endhighlight %}
@@ -675,8 +643,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream, ExcelOpenType.Automatic);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"), ExcelOpenType.Automatic);
IWorksheet sheet = workbook.Worksheets[0];
//Create a chart
@@ -702,13 +669,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
#region Save
//Saving the workbook
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Funnel.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
+ workbook.SaveAs(Path.GetFullPath("Output/Funnel.xlsx"));
#endregion
-
- //Dispose streams
- outputStream.Dispose();
- inputStream.Dispose();
}
{% endhighlight %}
@@ -788,8 +750,7 @@ The following code example illustrates how to create Box and Whisker chart.
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream, ExcelOpenType.Automatic);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"), ExcelOpenType.Automatic);
IWorksheet sheet = workbook.Worksheets[0];
//Create a chart
@@ -834,13 +795,8 @@ The following code example illustrates how to create Box and Whisker chart.
#region Save
//Saving the workbook
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/BoxandWhisker.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
+ workbook.SaveAs(Path.GetFullPath("Output/BoxandWhisker.xlsx"));
#endregion
-
- //Dispose streams
- outputStream.Dispose();
- inputStream.Dispose();
}
{% endhighlight %}
@@ -958,8 +914,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream, ExcelOpenType.Automatic);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"), ExcelOpenType.Automatic);
IWorksheet sheet = workbook.Worksheets[0];
//Create a chart
@@ -988,13 +943,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
#region Save
//Saving the workbook
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Waterfall.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
+ workbook.SaveAs(Path.GetFullPath("Output/Waterfall.xlsx"));
#endregion
-
- //Dispose streams
- outputStream.Dispose();
- inputStream.Dispose();
}
{% endhighlight %}
@@ -1088,8 +1038,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream, ExcelOpenType.Automatic);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"), ExcelOpenType.Automatic);
IWorksheet sheet = workbook.Worksheets[0];
//Create a chart
@@ -1117,13 +1066,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
#region Save
//Saving the workbook
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Histogram.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
+ workbook.SaveAs(Path.GetFullPath("Output/Histogram.xlsx"));
#endregion
-
- //Dispose streams
- outputStream.Dispose();
- inputStream.Dispose();
}
{% endhighlight %}
@@ -1215,8 +1159,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream, ExcelOpenType.Automatic);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"), ExcelOpenType.Automatic);
IWorksheet sheet = workbook.Worksheets[0];
//Create a chart
@@ -1245,13 +1188,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
#region Save
//Saving the workbook
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Pareto.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
+ workbook.SaveAs(Path.GetFullPath("Output/Pareto.xlsx"));
#endregion
-
- //Dispose streams
- outputStream.Dispose();
- inputStream.Dispose();
}
{% endhighlight %}
@@ -1346,8 +1284,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream, ExcelOpenType.Automatic);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"), ExcelOpenType.Automatic);
IWorksheet sheet = workbook.Worksheets[0];
//Create a chart
@@ -1370,13 +1307,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
#region Save
//Saving the workbook
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Treemap.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
+ workbook.SaveAs(Path.GetFullPath("Output/Treemap.xlsx"));
#endregion
-
- //Dispose streams
- outputStream.Dispose();
- inputStream.Dispose();
}
{% endhighlight %}
@@ -1458,8 +1390,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream, ExcelOpenType.Automatic);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"), ExcelOpenType.Automatic);
IWorksheet sheet = workbook.Worksheets[0];
//Create a chart
@@ -1482,13 +1413,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
#region Save
//Saving the workbook
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Sunburst.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
+ workbook.SaveAs(Path.GetFullPath("Output/Sunburst.xlsx"));
#endregion
-
- //Dispose streams
- outputStream.Dispose();
- inputStream.Dispose();
}
{% endhighlight %}
@@ -1651,12 +1577,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
#region Save
//Saving the workbook
- FileStream outputStream = new FileStream(Path.GetFullPath("Output.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
+ workbook.SaveAs("Output.xlsx");
#endregion
-
- //Dispose streams
- outputStream.Dispose();
}
{% endhighlight %}
@@ -1744,8 +1666,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
{
IApplication application = excelEngine.Excel;
application.DefaultVersion = ExcelVersion.Xlsx;
- FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read);
- IWorkbook workbook = application.Workbooks.Open(inputStream, ExcelOpenType.Automatic);
+ IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"), ExcelOpenType.Automatic);
IWorksheet sheet = workbook.Worksheets[0];
IChartShape chart = sheet.Charts[0];
@@ -1754,13 +1675,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
#region Save
//Saving the workbook
- FileStream outputStream = new FileStream(Path.GetFullPath("Output/Chart.xlsx"), FileMode.Create, FileAccess.Write);
- workbook.SaveAs(outputStream);
+ workbook.SaveAs(Path.GetFullPath("Output/Chart.xlsx"));
#endregion
-
- //Dispose streams
- outputStream.Dispose();
- inputStream.Dispose();
}
{% endhighlight %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/cell-range.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/cell-range.md
index f136eb6e6..5fa7c090e 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/cell-range.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/cell-range.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Cell Range in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
+title: Cell Range in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Cell Range in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Cell Range
@@ -8,7 +8,7 @@ documentation: ug
---
-# Cell Range in Spreadsheet control
+# Cell Range in ASP.NET Core Spreadsheet control
A group of cells in a sheet is known as cell range.
@@ -26,10 +26,10 @@ The following code example shows the wrap text functionality in spreadsheet.
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/wrap-text/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/wrap-text/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="WrapTextController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/wrap-text/wrapTextController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/wrap-text/wrapTextController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -65,10 +65,10 @@ The following code example shows the merge cells operation in spreadsheet.
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/merge-cells/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/merge-cells/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="MergeCellController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/merge-cells/mergeCellController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/merge-cells/mergeCellController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -125,10 +125,10 @@ You can clear the highlighted invalid data by using the following ways,
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/data-validation/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/data-validation/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="DataValidation.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/data-validation/dataValidation.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/data-validation/dataValidation.cs %}
{% endhighlight %}
{% endtabs %}
@@ -151,10 +151,10 @@ The following code example demonstrates how to add custom data validation with a
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/data-validation-cs2/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/data-validation-cs2/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="DataValidation.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/data-validation-cs2/dataValidation.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/data-validation-cs2/dataValidation.cs %}
{% endhighlight %}
{% endtabs %}
@@ -232,10 +232,10 @@ In the following sample, you can enable/disable the fill option on the button cl
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/autofill/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/autofill/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="AutofillController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/autofill/autofillController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/autofill/autofillController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -267,10 +267,10 @@ Clear the cell contents and formats in the Spreadsheet document by using the `cl
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/clear/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/clear/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="ClearController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/clear/clearController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/clear/clearController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/clipboard.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/clipboard.md
index 42db9c897..7b8846b46 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/clipboard.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/clipboard.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Clipboard in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
+title: Clipboard in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Clipboard in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Clipboard
@@ -8,7 +8,7 @@ documentation: ug
---
-# Clipboard in Spreadsheet control
+# Clipboard in ASP.NET Core Spreadsheet control
The Spreadsheet provides support for the clipboard operations (cut, copy, and paste). Clipboard operations can be enabled or disabled by setting the [`enableClipboard`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_EnableClipboard) property in Spreadsheet.
@@ -62,10 +62,10 @@ N> If you use the Keyboard shortcut key for cut (`Ctrl + X`) | copy (`Ctrl + C`)
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/clipboard/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/clipboard/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="ClipboardController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/clipboard/clipboardController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/clipboard/clipboardController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -77,10 +77,10 @@ The following example shows, how to prevent the paste action in spreadsheet. In
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/prevent-paste/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/prevent-paste/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="ClipboardController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/prevent-paste/clipboardController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/prevent-paste/clipboardController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/context-menu.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/context-menu.md
index 298dd7a07..bada067da 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/context-menu.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/context-menu.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Context Menu in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
+title: Context Menu in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Context Menu in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Context Menu
@@ -8,7 +8,7 @@ documentation: ug
---
-# Context Menu in Spreadsheet control
+# Context Menu in ASP.NET Core Spreadsheet control
Context Menu is used to improve user interaction with Spreadsheet using the popup menu. This will open when right-clicking on Cell/Column Header/Row Header/ Pager in the Spreadsheet. You can use [`enableContextMenu`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_EnableContextMenu) property to enable/disable context menu.
@@ -71,10 +71,10 @@ In this demo, Custom Item is added after the Paste item in the context menu.
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/add-context-menu/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/add-context-menu/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="AddContextMenu.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/add-context-menu/addContextMenu.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/add-context-menu/addContextMenu.cs %}
{% endhighlight %}
{% endtabs %}
@@ -88,10 +88,10 @@ In this demo, Insert Column item has been removed from the row/column header con
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/remove-context-menu/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/remove-context-menu/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="RemoveContextMenu.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/remove-context-menu/removeContextMenu.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/remove-context-menu/removeContextMenu.cs %}
{% endhighlight %}
{% endtabs %}
@@ -105,10 +105,10 @@ In this demo, Rename item is disabled in the pager context menu.
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/enable-context-menu/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/enable-context-menu/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="EnableContextMenu.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/enable-context-menu/enableContextMenu.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/enable-context-menu/enableContextMenu.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/data-binding.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/data-binding.md
index b5d8f24ad..fd4e6fd4a 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/data-binding.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/data-binding.md
@@ -22,10 +22,10 @@ Refer to the following code example for local data binding.
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/local-data-binding/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/local-data-binding/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="LocalDataController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/local-data-binding/localDataController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/local-data-binding/localDataController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -43,10 +43,10 @@ The following code example demonstrates how to customize the mapping of column d
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/field-mapping/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/field-mapping/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="FieldMappingController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/field-mapping/fieldMappingController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/field-mapping/fieldMappingController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -59,10 +59,10 @@ Refer to the following code example for remote data binding.
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/remote-data-binding/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/remote-data-binding/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="RemoteDataController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/remote-data-binding/remoteDataController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/remote-data-binding/remoteDataController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -76,10 +76,10 @@ N> By default, `DataManager` uses **ODataAdaptor** for remote data-binding.
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/odata-adaptor/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/odata-adaptor/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="ODataController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/odata-adaptor/oDataController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/odata-adaptor/oDataController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -91,10 +91,10 @@ You can use WebApiAdaptor to bind spreadsheet with Web API created using OData e
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/webapi-adaptor/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/webapi-adaptor/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="WebApiController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/webapi-adaptor/webApiController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/webapi-adaptor/webApiController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -108,10 +108,10 @@ Refer to the following code example for cell data binding.
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/cell-data-binding/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/cell-data-binding/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="CellDataController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/cell-data-binding/cellDataController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/cell-data-binding/cellDataController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -137,10 +137,10 @@ N> For `add` action, the value for all the fields will be `null` in the data. In
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/dynamic-data-binding/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/dynamic-data-binding/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="DynamicDataController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/dynamic-data-binding/dynamicDataController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/dynamic-data-binding/dynamicDataController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -154,10 +154,10 @@ The following code example demonstrates how to dynamically update data using the
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/dynamic-data-binding-cs2/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/dynamic-data-binding-cs2/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="UpdateRangeController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/dynamic-data-binding-cs2/updateRangeController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/dynamic-data-binding-cs2/updateRangeController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/editing.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/editing.md
index 790821590..e3188b326 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/editing.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/editing.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Editing in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
+title: Editing in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Editing in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Editing
@@ -8,7 +8,7 @@ documentation: ug
---
-# Editing in Spreadsheet control
+# Editing in ASP.NET Core Spreadsheet control
You can edit the contents of a cell directly in the cell or by typing in the formula bar. By default, the editing feature is enabled in the spreadsheet. Use the [`allowEditing`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_AllowEditing) property to enable or disable the editing feature.
@@ -41,10 +41,10 @@ The following sample shows how to prevent the editing and cell save. Here `E` co
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/editing/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/editing/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="EditingController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/editing/editingController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/editing/editingController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/feature-list.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/feature-list.md
index ccfedfc11..f2eacf9d6 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/feature-list.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/feature-list.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Feature List in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
+title: Feature List in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Feature List in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Feature List
@@ -8,7 +8,7 @@ documentation: ug
---
-# Comparision between EJ1 & EJ2 Spreadsheet features
+# Comparison between EJ1 & EJ2 ASP.NET Core Spreadsheet features
The following table compares Excel functionality with the availability of EJ1 and EJ2 Spreadsheet features.
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/filter.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/filter.md
index dcff60041..4c809f5cf 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/filter.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/filter.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Filter in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
+title: Filter in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Filter in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Filter
@@ -8,7 +8,7 @@ documentation: ug
---
-# Filtering in Spreadsheet control
+# Filtering in ASP.NET Core Spreadsheet control
Filtering helps you to view specific rows in the spreadsheet by hiding the other rows. You can use the [`allowFiltering`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_AllowFiltering) property to enable or disable filtering functionality.
@@ -38,10 +38,10 @@ The following code example shows `filter` functionality in the Spreadsheet contr
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/filter/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/filter/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="FilterController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/filter/filterController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/filter/filterController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -87,10 +87,10 @@ The following code example shows how to get the filtered rows.
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/filter-cs1/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/filter-cs1/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="InsertSheetController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/filter-cs1/filterController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/filter-cs1/filterController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/formatting.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/formatting.md
index 1ea64dad7..5899a39b5 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/formatting.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/formatting.md
@@ -1,14 +1,14 @@
---
layout: post
-title: Formatting in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
-description: Learn here all about Formatting in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
+title: Formatting in EJ2 ASP.NET Core Syncfusion Spreadsheet Control
+description: Learn here all about Formatting in Syncfusion EJ2 ASP.NET CORE Spreadsheet Control of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Formatting
documentation: ug
---
-# Formatting in Spreadsheet Component
+# Formatting in ASP.NET Core Spreadsheet Control
Formatting options make your data easier to view and understand. The different types of formatting options in the Spreadsheet are,
* Number Formatting
@@ -91,10 +91,10 @@ The following code example shows the number formatting in cell data.
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/number-format/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/number-format/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="NumberFormatController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/number-format/numberFormatController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/number-format/numberFormatController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -146,10 +146,10 @@ The following code example demonstrates how to configure culture-based formats f
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/globalization-cs1/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/globalization-cs1/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="CultureController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/globalization-cs1/cultureController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/globalization-cs1/cultureController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -214,10 +214,10 @@ The following code example shows the style formatting in text and cells of the s
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/cell-format/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/cell-format/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="CellFormatController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/cell-format/cellFormatController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/cell-format/cellFormatController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -311,10 +311,10 @@ You can clear the defined rules by using one of the following ways,
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/conditional-formatting/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/conditional-formatting/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="ConditionalFormattingController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/conditional-formatting/conditionalFormattingController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/conditional-formatting/conditionalFormattingController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/formulas.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/formulas.md
index 5584ce2f5..481f40a2d 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/formulas.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/formulas.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Formulas in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
+title: Formulas in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Formulas in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Formulas
@@ -8,7 +8,7 @@ documentation: ug
---
-# Formulas in Spreadsheet control
+# Formulas in ASP.NET Core Spreadsheet control
Formulas are used for calculating the data in a worksheet. You can refer the cell reference from same sheet or from different sheets.
@@ -29,14 +29,14 @@ Previously, although you could import culture-based Excel files into the Spreads
When loading spreadsheet data with culture-based formula argument separators using cell data binding, local/remote data, or JSON, ensure to set the [listSeparator](https://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.spreadsheet.spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_ListSeparator) property value as the culture-based list separator from your end. Additionally, note that when importing an Excel file, the [listSeparator](https://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.spreadsheet.spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_ListSeparator) property will be updated based on the culture of the launched import/export service.
-In the example below, the Spreadsheet control is rendered with the `German culture (de)`. Additionally, you can find references on how to set the culture-based argument separator and culture-based formatted numeric value as arguments to the formulas.
+In the example below, the Spreadsheet control is rendered with the `German culture` [`de`]. Additionally, you can find references on how to set the culture-based argument separator and culture-based formatted numeric value as arguments to the formulas.
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/formula-cs3/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/formula-cs3/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="FormulaController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/formula-cs3/formulaController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/formula-cs3/formulaController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -50,10 +50,10 @@ The following code example shows an unsupported formula in the spreadsheet.
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/formula/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/formula/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="FormulaController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/formula/formulaController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/formula/formulaController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -63,10 +63,10 @@ The following code example shows how to use `computeExpression` method in the sp
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/formula-cs2/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/formula-cs2/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="FormulaController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/formula-cs2/formulaController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/formula-cs2/formulaController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -87,10 +87,10 @@ The following code example shows the usage of named ranges support.
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/defined-names/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/defined-names/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="DefinedNameController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/defined-names/definedNameController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/defined-names/definedNameController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -113,10 +113,10 @@ The following code example demonstrates how to set the Automatic calculation mod
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/calculation-cs1/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/calculation-cs1/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="CalculationModeController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/calculation-cs1/calculationModeController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/calculation-cs1/calculationModeController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -133,10 +133,10 @@ The following code example demonstrates how to set the Manual calculation mode i
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/calculation-cs2/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/calculation-cs2/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="CalculationModeController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/calculation-cs2/calculationModeController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/calculation-cs2/calculationModeController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/freeze-pane.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/freeze-pane.md
index 5acc939b4..3d753cc45 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/freeze-pane.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/freeze-pane.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Freeze Pane in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
+title: Freeze Pane in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Freeze Pane in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Freeze Pane
@@ -8,11 +8,11 @@ documentation: ug
---
-# FreezePanes in Spreadsheet control
+# FreezePanes in ASP.NET Core Spreadsheet control
Freeze Panes helps you to keep particular rows or columns visible when scrolling the sheet content in the spreadsheet. You can specify the number of frozen rows and columns using the `frozenRows` and `frozenColumns` properties inside the [`Sheet`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_Sheets) property.
-## Apply freezepanes on UI
+## Apply freeze panes on UI
**User Interface**:
@@ -47,10 +47,10 @@ In this demo, the frozenColumns is set as ‘2’, and the frozenRows is set as
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/freeze-pane/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/freeze-pane/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="FreezePane.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/freeze-pane/freezePane.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/freeze-pane/freezePane.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/getting-started-core.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/getting-started-core.md
index 79545efe2..752280b7a 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/getting-started-core.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/getting-started-core.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Getting Started with EJ2 ASP.NET CORE Spreadsheet Control
+title: Getting Started with ASP.NET CORE Spreadsheet Control | syncfusion
description: Checkout and learn about getting started with EJ2 ASP.NET CORE Spreadsheet control of Syncfusion Essential JS 2 and more details.
platform: document-processing
control: Getting Started Core
@@ -20,7 +20,7 @@ This section briefly explains about how to include [ASP.NET Core Spreadsheet](ht
* [Create a Project using Microsoft Templates](https://learn.microsoft.com/en-us/aspnet/core/tutorials/razor-pages/razor-pages-start?view=aspnetcore-8.0&tabs=visual-studio#create-a-razor-pages-web-app)
-* [Create a Project using Syncfusion® ASP.NET Core Extension](https://ej2.syncfusion.com/aspnetcore/documentation/getting-started/project-template)
+* [Create a Project using Syncfusion® ASP.NET Core Extension](https://ej2.syncfusion.com/aspnetcore/documentation/visual-studio-integration/create-project)
## Install ASP.NET Core package in the application
@@ -91,7 +91,7 @@ Now, add the Syncfusion® ASP.NET Core Sprea
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/getting-started-core/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/getting-started-core/tagHelper %}
{% endhighlight %}
{% endtabs %}
@@ -103,7 +103,7 @@ N> [View Sample in GitHub](https://github.com/SyncfusionExamples/ASP-NET-Core-Ge
## See also
-* [Getting Started with Syncfusion® ASP.NET Core using Razor Pages](https://ej2.syncfusion.com/aspnetcore/documentation/getting-started/razor-pages/)
+* [Getting Started with Syncfusion® ASP.NET Core using Razor Pages](https://ej2.syncfusion.com/aspnetcore/documentation/getting-started/razor-pages)
* [Getting Started with Syncfusion® ASP.NET Core MVC using Tag Helper](https://ej2.syncfusion.com/aspnetcore/documentation/getting-started/aspnet-core-mvc-taghelper)
* [Data Binding](./data-binding)
* [Open and Save](./open-save)
\ No newline at end of file
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/global-local.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/global-local.md
index 7c4bd8366..96e2d1f3c 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/global-local.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/global-local.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Global Local in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
+title: Global Local in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Global Local in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Global Local
@@ -382,10 +382,10 @@ The following example demonstrates the Spreadsheet in `French` culture. In the b
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/locale/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/locale/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="LocaleController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/locale/localeController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/locale/localeController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -399,10 +399,10 @@ The following example demonstrates the Spreadsheet in French [ `fr-CH`] culture.
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/internationalization/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/internationalization/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="InternationalizationController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/internationalization/internationalizationController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/internationalization/internationalizationController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -414,10 +414,10 @@ RTL provides an option to switch the text direction and layout of the Spreadshee
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/rtl/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/rtl/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="RtlController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/rtl/rtlController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/rtl/rtlController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/how-to/change-active-sheet.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/how-to/change-active-sheet.md
index 605e4f254..cffe810c3 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/how-to/change-active-sheet.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/how-to/change-active-sheet.md
@@ -1,13 +1,13 @@
---
layout: post
-title: Change active sheet in EJ2 ASP.NET CORE Spreadsheet control | Syncfusion
+title: Change active sheet in ASP.NET CORE Spreadsheet | Syncfusion
description: Learn here all about changing active sheet index when import a file in Syncfusion EJ2 ASP.NET CORE Spreadsheet control of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Spreadsheet
documentation: ug
---
-# Changing the active sheet in Spreadsheet control
+# Changing the active sheet in ASP.NET Core Spreadsheet control
You can change the active sheet of imported file by updating [`activeSheetIndex`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_ActiveSheetIndex) property on the [`openComplete`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_OpenComplete) event.
@@ -15,9 +15,9 @@ The following code example shows how to set the active sheet when importing an E
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/change-active-sheet/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/change-active-sheet/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="OpenController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/change-active-sheet/opencontroller.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/change-active-sheet/opencontroller.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/how-to/identify-the-context-menu-opened.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/how-to/identify-the-context-menu-opened.md
index 2c87d9995..76fe42f42 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/how-to/identify-the-context-menu-opened.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/how-to/identify-the-context-menu-opened.md
@@ -1,13 +1,13 @@
---
layout: post
-title: Identify the context menu opened in EJ2 ASP.NET CORE Spreadsheet control | Syncfusion
+title: Identify context menu opened in ASP.NET Core Spreadsheet | Syncfusion
description: Learn here all about how to identify the context menu opened in Syncfusion EJ2 ASP.NET CORE Spreadsheet control of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Spreadsheet
documentation: ug
---
-## Identify the context menu opened in Spreadsheet control
+# Identify the context menu opened in ASP.NET Core Spreadsheet control
The Spreadsheet includes several context menus that will open and display depending on the action. When you right-click on a cell, for example, a context menu with options related to the cell element appears.
@@ -24,7 +24,7 @@ The following code example shows how to identify the context menu opened.
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/find-target-context-menu/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/find-target-context-menu/tagHelper %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/illustrations.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/illustrations.md
index c12d4c4a4..0b5b716be 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/illustrations.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/illustrations.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Illustrations in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
+title: Illustrations in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Illustrations in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Illustrations
@@ -8,7 +8,7 @@ documentation: ug
---
-# Illustrations in Spreadsheet control
+# Illustrations in ASP.NET Core Spreadsheet control
Illustrations helps you to insert a image, shapes and graphic objects in the Essential JS 2 spreadsheet.
@@ -71,10 +71,10 @@ Image feature allows you to view and insert a image in a spreadsheet and you can
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/image/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/image/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="ImageController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/image/imageController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/image/imageController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -128,10 +128,10 @@ The available arguments in the `ChartModel` are:
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/chart-cs1/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/chart-cs1/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="ChartController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/chart-cs1/chartController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/chart-cs1/chartController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -156,10 +156,10 @@ Chart feature allows you to view and insert a chart in a spreadsheet, and you ca
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/chart/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/chart/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="ChartController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/chart/chartController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/chart/chartController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -169,10 +169,10 @@ Using the [`actionBegin`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusi
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/chart-cs2/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/chart-cs2/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="ChartController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/chart-cs2/chartController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/chart-cs2/chartController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/keyboard-shortcuts.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/keyboard-shortcuts.md
index 50ec1ee60..bcd1e24db 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/keyboard-shortcuts.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/keyboard-shortcuts.md
@@ -1,14 +1,14 @@
---
layout: post
-title: Keyboard Shortcuts in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
-description: Learn here all about Keyboard Shortcuts in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
+title: Keyboard Shortcuts in ASP.NET Core Spreadsheet | Syncfusion
+description: Learn about Keyboard Shortcuts in ASP.NET Core Spreadsheet Control of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Keyboard Shortcuts
documentation: ug
---
-# Keyboard Shortcuts And Navigation
+# Keyboard Shortcuts And Navigation in ASP.NET Core Spreadsheet Control
The keyboard shortcuts supported in the spreadsheet are,
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/link.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/link.md
index 8528e3819..fbc6e0253 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/link.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/link.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Link in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
+title: Link in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Link in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Link
@@ -8,7 +8,7 @@ documentation: ug
---
-# Hyperlink in Spreadsheet control
+# Hyperlink in ASP.NET Core Spreadsheet control
Hyperlink is used to navigate to web links or cell reference within the sheet or to other sheets in Spreadsheet. You can use the [`allowHyperlink`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_AllowHyperlink) property to enable or disable hyperlink functionality.
@@ -54,10 +54,10 @@ There is an event named `beforeHyperlinkClick` which triggers only on clicking h
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/link/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/link/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="HyperlinkController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/link/hyperlinkController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/link/hyperlinkController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/mobile-responsiveness.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/mobile-responsiveness.md
index e22662985..3d0c1f0c0 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/mobile-responsiveness.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/mobile-responsiveness.md
@@ -1,14 +1,14 @@
---
layout: post
-title: Mobile Responsiveness in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
-description: Learn here all about Mobile Responsiveness in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
+title: Mobile Responsiveness in ASP.NET Core Spreadsheet | Syncfusion
+description: Learn about Mobile Responsiveness in ASP.NET Core Spreadsheet Control of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Mobile Responsiveness
documentation: ug
---
-# Mobile Responsiveness
+# Mobile Responsiveness in ASP.NET Core Syncfusion Spreadsheet Control
The Spreadsheet control rendered in desktop mode will be adaptive in all mobile devices where the layout gets adjusted based on their parent element’s dimensions to accommodate any resolution.
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/notes.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/notes.md
index 0a845ba59..a71451518 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/notes.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/notes.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Notes in EJ2 ASP.NET CORE Syncfusion Spreadsheet Control
+title: Notes in EJ2 ASP.NET Core Syncfusion Spreadsheet Control
description: Learn here all about the notes feature in EJ2 ASP.NET CORE Spreadsheet Control of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Notes
@@ -8,7 +8,7 @@ documentation: ug
---
-# Notes in Spreadsheet control
+# Notes in ASP.NET Core Spreadsheet control
The **Notes** feature is used to insert comments, provide feedback, suggest changes, or leave remarks on specific cells while reviewing documents in the Spreadsheet. You can enable or disable the notes functionality using the [`enableNotes`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_EnableNotes) property, which defaults to **true**.
@@ -20,10 +20,10 @@ In the below example, you can add, edit, save, and delete notes.
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/note-cs1/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/note-cs1/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="NotesController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/note-cs1/notesController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/note-cs1/notesController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -56,7 +56,7 @@ In the active worksheet, right-click on the desired cell containing the note tha
## Saving the document with notes
-The Spreadsheet data, including notes, can be saved and exported as an Excel document by selecting **File > Save As** in the ribbon menu. Exporting worksheets with notes is supported in Excel file formats such as MS Excel (.xlsx) and MS Excel 97-2003 (.xls).
+The Spreadsheet data, including notes, can be saved and exported as an Excel document by selecting **File > Save As** in the ribbon menu. Exporting worksheets with notes is supported in Excel file formats such as Microsoft Excel (.xlsx) and Microsoft Excel 97-2003 (.xls).
> When exporting the Spreadsheet to file formats such as Comma Separated Values (.csv), Excel Macro-Enabled Workbook (.xlsm), Excel Binary Workbook (.xlsb), and PDF Document (.pdf), the notes will not be available.
@@ -70,10 +70,10 @@ In the below example, the note functionality is disabled in the Spreadsheet.
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/note-cs2/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/note-cs2/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="NotesController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/note-cs2/notesController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/note-cs2/notesController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -83,10 +83,10 @@ The notes can be added initially when the Spreadsheet loads using cell data bind
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/note-cs3/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/note-cs3/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="NotesController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/note-cs3/notesController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/note-cs3/notesController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/open-save.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/open-save.md
index 090d3c561..a92e4a026 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/open-save.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/open-save.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Open Save in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
+title: Open Save in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Open Save in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Open Save
@@ -8,7 +8,7 @@ documentation: ug
---
-# Open and Save in Spreadsheet control
+# Open and Save in ASP.NET Core Spreadsheet control
To import an excel file, it needs to be read and converted to client side Spreadsheet model. The converted client side Spreadsheet model is sent as JSON which is used to render Spreadsheet. Similarly, when you save the Spreadsheet, the client Spreadsheet model is sent to the server as JSON for processing and saved. Server configuration is used for this process.
@@ -24,10 +24,10 @@ The following sample shows the `Open` option by using the [`openUrl`](https://he
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/open/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/open/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="Opencontroller.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/open/opencontroller.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/open/opencontroller.cs %}
{% endhighlight %}
{% endtabs %}
@@ -52,10 +52,10 @@ The following code example shows how to import an excel document using file uplo
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/open-uploader/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/open-uploader/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="Opencontroller.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/open-uploader/opencontroller.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/open-uploader/opencontroller.cs %}
{% endhighlight %}
{% endtabs %}
@@ -65,10 +65,10 @@ You can achieve to access the remote excel file by using the [`created`](https:/
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/open-url/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/open-url/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="Opencontroller.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/open-url/opencontroller.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/open-url/opencontroller.cs %}
{% endhighlight %}
{% endtabs %}
@@ -80,10 +80,10 @@ Please find the code to fetch the blob data and load it into the Spreadsheet con
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/open-from-blob/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/open-from-blob/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="OpenController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/open-from-blob/opencontroller.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/open-from-blob/opencontroller.cs %}
{% endhighlight %}
{% endtabs %}
@@ -205,10 +205,10 @@ The following code example shows how to open the spreadsheet data as base64 stri
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/base-64-string/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/base-64-string/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="OpenController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/base-64-string/opencontroller.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/base-64-string/opencontroller.cs %}
{% endhighlight %}
{% endtabs %}
@@ -218,10 +218,10 @@ You can open excel file into a read-only mode by using the [`openComplete`](http
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/open-readonly/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/open-readonly/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="Opencontroller.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/open-readonly/opencontroller.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/open-readonly/opencontroller.cs %}
{% endhighlight %}
{% endtabs %}
@@ -253,10 +253,10 @@ The following code snippet demonstrates how to configure the deserialization opt
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/open-from-json/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/open-from-json/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="OpenController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/open-from-json/openController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/open-from-json/openController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -354,10 +354,10 @@ You can add your own custom header to the open action in the Spreadsheet. For pr
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/open-header/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/open-header/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="Opencontroller.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/open-header/opencontroller.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/open-header/opencontroller.cs %}
{% endhighlight %}
{% endtabs %}
@@ -401,10 +401,10 @@ The following sample shows the `Save` option by using the [`saveUrl`](https://he
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/save/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/save/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="Savecontroller.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/save/savecontroller.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/save/savecontroller.cs %}
{% endhighlight %}
{% endtabs %}
@@ -434,10 +434,10 @@ Please find below the code to retrieve blob data from the Spreadsheet control be
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/save-as-blob/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/save-as-blob/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="SaveController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/save-as-blob/savecontroller.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/save-as-blob/savecontroller.cs %}
{% endhighlight %}
{% endtabs %}
@@ -587,10 +587,10 @@ The following code example shows how to save the spreadsheet data as base64 stri
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/base-64-string/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/base-64-string/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="OpenController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/base-64-string/opencontroller.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/base-64-string/opencontroller.cs %}
{% endhighlight %}
{% endtabs %}
@@ -622,10 +622,10 @@ The following code snippet demonstrates how to configure the serialization optio
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/save-as-json/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/save-as-json/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="SaveController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/save-as-json/saveController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/save-as-json/saveController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -635,10 +635,10 @@ Passing the custom parameters from client to server by using [`beforeSave`](http
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/custom-params/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/custom-params/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="CustomParamsController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/custom-params/customParamsController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/custom-params/customParamsController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -648,10 +648,10 @@ You can add your own custom header to the save action in the Spreadsheet. For pr
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/save-header/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/save-header/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="CustomHeaderController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/save-header/CustomHeaderController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/save-header/CustomHeaderController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -666,10 +666,10 @@ The possible values are:
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/pdf-orientation/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/pdf-orientation/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="pdfOrientationController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/pdf-orientation/pdfOrientationController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/pdf-orientation/pdfOrientationController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -688,10 +688,10 @@ To save the Spreadsheet document as an `xlsx, xls, csv, or pdf` file, by using `
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/open-save/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/open-save/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="OpenSaveController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/open-save/openSaveController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/open-save/openSaveController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/overview.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/overview.md
index 63bb6b626..15f900e1a 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/overview.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/overview.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Overview of the EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
+title: Overview of the EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Overview of the Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Index
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/performance-best-practices.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/performance-best-practices.md
index ad9c11480..728438584 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/performance-best-practices.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/performance-best-practices.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Performance Best Practices in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
+title: Performance Best Practices in ASP.NET Core Spreadsheet | Syncfusion
description: Learn here all about performance best practices in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Performance
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/print.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/print.md
index 08c164535..76de46051 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/print.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/print.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Print in EJ2 ASP.NET CORE Syncfusion Spreadsheet Control
+title: Print in EJ2 ASP.NET Core Syncfusion Spreadsheet Control
description: Learn here all about print feature in EJ2 ASP.NET CORE Spreadsheet Control of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Print
@@ -8,7 +8,7 @@ documentation: ug
---
-# Print in Spreadsheet control
+# Print in ASP.NET Core Spreadsheet control
The printing functionality allows end-users to print all contents, such as tables, charts, images, and formatted contents, available in the active worksheet or entire workbook in the Spreadsheet. You can enable or disable print functionality by using the `allowPrint` property, which defaults to **true**.
@@ -32,10 +32,10 @@ The `printOptions` contain three properties, as described below.
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/print-cs2/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/print-cs2/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="PrintController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/print-cs2/printController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/print-cs2/printController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -47,10 +47,10 @@ The printing functionality in the Spreadsheet can be disabled by setting the [`a
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/print-cs3/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/print-cs3/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="PrintController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/print-cs3/printController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/print-cs3/printController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/protect-sheet.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/protect-sheet.md
index 89f94449d..3bb05009f 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/protect-sheet.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/protect-sheet.md
@@ -46,10 +46,10 @@ The following example shows `Protect Sheet` functionality with password in the S
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/protect-sheet/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/protect-sheet/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="ProtectSheetController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/protect-sheet/protectSheetController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/protect-sheet/protectSheetController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -77,10 +77,10 @@ In protected spreadsheet, to make some particular cell or range of cells are edi
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/lock-cells/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/lock-cells/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="LockCellController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/lock-cells/lockCellController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/lock-cells/lockCellController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -115,10 +115,10 @@ The following example demonstrates how to make rows, columns, and cells read-onl
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/read-only/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/read-only/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="ReadOnlyController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/read-only/readOnlyController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/read-only/readOnlyController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -140,10 +140,10 @@ The following example shows `Protect Workbook` by using the [`isProtected`](http
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/protect-workbook/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/protect-workbook/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="ProtectWorkbookController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/protect-workbook/protectWorkbookController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/protect-workbook/protectWorkbookController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -153,10 +153,10 @@ The following example shows `Protect Workbook` by using the [`password`](https:/
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/password/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/password/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="PasswordController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/password/passwordController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/password/passwordController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/ribbon.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/ribbon.md
index 2f4a35865..e936f0824 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/ribbon.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/ribbon.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Ribbon in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
+title: Ribbon in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Ribbon in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Ribbon
@@ -8,7 +8,7 @@ documentation: ug
---
-# Ribbon in Spreadsheet control
+# Ribbon in ASP.NET Core Spreadsheet control
It helps to organize a spreadsheet’s features into a series of tabs. By clicking the expand or collapse icon, you can expand or collapse the ribbon toolbar dynamically.
@@ -37,10 +37,10 @@ The following code example shows the usage of ribbon customization.
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/ribbon/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/ribbon/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="RibbonController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/ribbon/ribbonController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/ribbon/ribbonController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/rows-and-columns.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/rows-and-columns.md
index 178c641a9..8e291b564 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/rows-and-columns.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/rows-and-columns.md
@@ -8,7 +8,7 @@ documentation: ug
---
-# Rows and columns in Spreadsheet control
+# Rows and columns in ASP.NET Core Spreadsheet control
Spreadsheet is a tabular format consisting of rows and columns. The intersection point of rows and columns are called as cells. The list of operations that you can perform in rows and columns are,
@@ -31,10 +31,10 @@ The following code example shows the options for inserting rows in the spreadshe
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/insert-row/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/insert-row/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="InsertRowController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/insert-row/insertRowController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/insert-row/insertRowController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -51,10 +51,10 @@ The following code example shows the options for inserting columns in the spread
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/insert-column/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/insert-column/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="InsertColumnController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/insert-column/insertColumnController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/insert-column/insertColumnController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -73,10 +73,10 @@ The following code example shows the delete operation of rows and columns in the
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/delete-row/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/delete-row/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="DeleteRowController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/delete-row/deleteRowController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/delete-row/deleteRowController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -106,10 +106,10 @@ The following code example shows the hide/show rows and columns operation in the
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/show-hide/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/show-hide/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="ShowHideController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/show-hide/showHideController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/show-hide/showHideController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -134,10 +134,10 @@ The following code example shows how to change the height for single/multiple ro
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/row-height/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/row-height/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="RowHeightController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/row-height/rowHeightController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/row-height/rowHeightController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -156,10 +156,10 @@ The following code example shows how to change the width for single/multiple col
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/column-width/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/column-width/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="ColumnWidthController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/column-width/columnWidthController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/column-width/columnWidthController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -171,7 +171,7 @@ The following code example shows how to change the text in the column headers.
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/column-header-change/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/column-header-change/tagHelper %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/scrolling.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/scrolling.md
index 4dfa3d402..2c846110b 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/scrolling.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/scrolling.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Scrolling in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
+title: Scrolling in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Scrolling in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Scrolling
@@ -8,7 +8,7 @@ documentation: ug
---
-# Scrolling in Spreadsheet control
+# Scrolling in ASP.NET Core Spreadsheet control
Scrolling helps you to move quickly to different areas of the worksheet. It moves faster if we use horizontal and vertical scroll bars. Scrolling can be enabled by setting the [`allowScrolling`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_AllowScrolling) as true.
@@ -53,10 +53,10 @@ The following code example shows the finite scrolling with defined rows and colu
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/scrolling/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/scrolling/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="ScrollingController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/scrolling/scrollingController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/scrolling/scrollingController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/searching.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/searching.md
index 1be93e70e..96ddb05ba 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/searching.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/searching.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Searching in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
+title: Searching in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Searching in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Searching
@@ -8,7 +8,7 @@ documentation: ug
---
-# Find and Replace in Spreadsheet control
+# Find and Replace in ASP.NET Core Spreadsheet control
Find and Replace helps you to search for the target text and replace the found text with alternative text within the sheet or workbook. You can use the [`allowFindAndReplace`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_AllowFindAndReplace) property to enable or disable the Find and Replace functionality.
@@ -65,10 +65,10 @@ In the following sample, searching can be done by following ways:
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/search/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/search/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="SearchController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/search/searchController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/search/searchController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/selection.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/selection.md
index 5e4222b51..de267efeb 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/selection.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/selection.md
@@ -8,7 +8,7 @@ documentation: ug
---
-# Selection in Spreadsheet Control
+# Selection in ASP.NET Core Spreadsheet Control
Selection provides interactive support to highlight the cell, row, or column that you select. Selection can be done through Mouse, Touch, or Keyboard interaction. To enable selection, set `mode` as `Single` or `Multiple` in [`selectionSettings`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_SelectionSettings). If you set `mode` to `None`, it disables the UI selection.
@@ -49,10 +49,10 @@ The following sample shows the row selection in the spreadsheet, here selecting
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/row-selection/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/row-selection/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="SelectionController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/row-selection/selectionController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/row-selection/selectionController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -75,10 +75,10 @@ The following sample shows the column selection in the spreadsheet, here selecti
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/column-selection/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/column-selection/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="SelectionController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/column-selection/selectionController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/column-selection/selectionController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -90,10 +90,10 @@ Below is a code example demonstrating how to retrieve the selected cell values a
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/selected-cell-values/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/selected-cell-values/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="SelectedCellValuesController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/selected-cell-values/selectedCellValuesController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/selected-cell-values/selectedCellValuesController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -103,10 +103,10 @@ The following sample shows, how to remove the selection in the spreadsheet. Here
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/disable-selection/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/disable-selection/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="SelectionController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/disable-selection/selectionController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/disable-selection/selectionController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/sort.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/sort.md
index 75f9dc4e1..b548cb172 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/sort.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/sort.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Sort in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
+title: Sort in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Sort in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Sort
@@ -8,7 +8,7 @@ documentation: ug
---
-# Sorting in Spreadsheet control
+# Sorting in ASP.NET Core Spreadsheet control
Sorting helps arranging the data to a specific order in a selected range of cells. You can use the [`allowSorting`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_AllowSorting) property to enable or disable sorting functionality.
@@ -38,10 +38,10 @@ The following code example shows `sort` functionality in the Spreadsheet control
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/sort-by-cell/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/sort-by-cell/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="SortController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/sort-by-cell/sortController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/sort-by-cell/sortController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -112,10 +112,10 @@ N> * All the arguments are optional.
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/passing-sort/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/passing-sort/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="PassingSortController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/passing-sort/passingSortController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/passing-sort/passingSortController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -139,10 +139,10 @@ In the following demo, the `Trustworthiness` column is sorted based on the custo
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/custom-sort/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/custom-sort/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="CustomSortController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/custom-sort/customSortController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/custom-sort/customSortController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/template.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/template.md
index 3cd440569..7ac7ca207 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/template.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/template.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Template in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
+title: Template in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Template in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Template
@@ -8,7 +8,7 @@ documentation: ug
---
-# Cell Template in Spreadsheet Control
+# Cell Template in ASP.NET Core Spreadsheet Control
Cell Template is used for adding HTML elements into Spreadsheet. You can add the cell template in spreadsheet by using the `template` property and specify the address using the `address` property inside the `ranges` property. You can customize the HTML elements similar to Syncfusion® components (TextBox, DropDownList, RadioButton, MultiSelect, DatePicker etc) by using the `beforeCellRender` event. In this demo, Cell template is applied to `C2:C9` and instantiated with HTML input components like TextBox, RadioButton, TextArea. You need to bind the events to perform any operations through HTML elements or Syncfusion® components. Here, we have added `change` event in to the MultiSelect control, and we have updated the selected data into the spreadsheet cell through that change event.
@@ -16,10 +16,10 @@ The following code example describes the above behavior.
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/template/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/template/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="Template.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/template/template.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/template/template.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/undo-redo.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/undo-redo.md
index 67c103ae3..6a3c2b31b 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/undo-redo.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/undo-redo.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Undo Redo in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
+title: Undo Redo in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Undo Redo in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Undo Redo
@@ -8,7 +8,7 @@ documentation: ug
---
-# Undo and Redo in Spreadsheet control
+# Undo and Redo in ASP.NET Core Spreadsheet control
`Undo` option helps you to undone the last action performed and `Redo` option helps you to do the same action which is reverted in the Spreadsheet. You can use the [`allowUndoRedo`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_AllowUndoRedo) property to enable or disable undo redo functionality in spreadsheet.
@@ -40,10 +40,10 @@ The following code example shows `How to update and customize your own actions f
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/undo-redo/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/undo-redo/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="UndoRedoController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/undo-redo/undoRedoController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/undo-redo/undoRedoController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/worksheet.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/worksheet.md
index 90685bf46..bdfd0b6ea 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/worksheet.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/worksheet.md
@@ -1,6 +1,6 @@
---
layout: post
-title: Worksheet in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
+title: Worksheet in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Worksheet in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Worksheet
@@ -8,7 +8,7 @@ documentation: ug
---
-# Worksheet in Spreadsheet control
+# Worksheet in ASP.NET Core Spreadsheet control
Worksheet is a collection of cells organized in the form of rows and columns that allows you to store, format, and manipulate the data.
@@ -24,10 +24,10 @@ The following code example shows the insert sheet operation in spreadsheet.
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/insert-sheet/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/insert-sheet/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="InsertSheetController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/insert-sheet/insertSheetController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/insert-sheet/insertSheetController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -39,10 +39,10 @@ The following code example shows how to insert a sheet programmatically and make
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/insert-sheet-change-active-sheet/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/insert-sheet-change-active-sheet/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="InsertSheetController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/insert-sheet-change-active-sheet/insertSheetController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/insert-sheet-change-active-sheet/insertSheetController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -78,10 +78,10 @@ The following code example shows the headers and gridlines operation in spreadsh
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/header-gridlines/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/header-gridlines/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="HeaderController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/header-gridlines/headerController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/header-gridlines/headerController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -103,10 +103,10 @@ The following code example shows the three types of sheet visibility state.
{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/sheet-visiblity/tagHelper %}
+{% include code-snippet/spreadsheet/asp-net-core/sheet-visiblity/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="SheetVisiblityController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-core/sheet-visiblity/sheetVisiblityController.cs %}
+{% include code-snippet/spreadsheet/asp-net-core/sheet-visiblity/sheetVisiblityController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/cell-range.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/cell-range.md
index 3ba685ac1..27defe441 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/cell-range.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/cell-range.md
@@ -8,7 +8,7 @@ documentation: ug
---
-# Cell Range in Spreadsheet control
+# Cell Range in ASP.NET MVC Spreadsheet control
A group of cells in a sheet is known as cell range.
@@ -26,10 +26,10 @@ The following code example shows the wrap text functionality in spreadsheet.
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/wrap-text/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/wrap-text/razor %}
{% endhighlight %}
{% highlight c# tabtitle="WrapTextController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/wrap-text/wrapTextController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/wrap-text/wrapTextController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -63,10 +63,10 @@ The following code example shows the merge cells operation in spreadsheet.
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/merge-cells/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/merge-cells/razor %}
{% endhighlight %}
{% highlight c# tabtitle="MergeCellController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/merge-cells/mergeCellController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/merge-cells/mergeCellController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -122,10 +122,10 @@ You can clear the highlighted invalid data by using the following ways,
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/data-validation/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/data-validation/razor %}
{% endhighlight %}
{% highlight c# tabtitle="DataValidation.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/data-validation/dataValidation.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/data-validation/dataValidation.cs %}
{% endhighlight %}
{% endtabs %}
@@ -148,10 +148,10 @@ The following code example demonstrates how to add custom data validation with a
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/data-validation-cs2/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/data-validation-cs2/razor %}
{% endhighlight %}
{% highlight c# tabtitle="DataValidation.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/data-validation-cs2/dataValidation.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/data-validation-cs2/dataValidation.cs %}
{% endhighlight %}
{% endtabs %}
@@ -229,10 +229,10 @@ In the following sample, you can enable/disable the fill option on the button cl
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/autofill/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/autofill/razor %}
{% endhighlight %}
{% highlight c# tabtitle="AutofillController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/autofill/autofillController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/autofill/autofillController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -264,10 +264,10 @@ Clear the cell contents and formats in the Spreadsheet document by using the `cl
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/clear/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/clear/razor %}
{% endhighlight %}
{% highlight c# tabtitle="ClearController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/clear/clearController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/clear/clearController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/clipboard.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/clipboard.md
index c61c6e39d..03d110a7e 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/clipboard.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/clipboard.md
@@ -8,7 +8,7 @@ documentation: ug
---
-# Clipboard in Spreadsheet control
+# Clipboard in ASP.NET MVC Spreadsheet control
The Spreadsheet provides support for the clipboard operations (cut, copy, and paste). Clipboard operations can be enabled or disabled by setting the [`enableClipboard`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_EnableClipboard) property in Spreadsheet.
@@ -62,10 +62,10 @@ N> If you use the Keyboard shortcut key for cut (`Ctrl + X`) | copy (`Ctrl + C`)
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/clipboard/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/clipboard/razor %}
{% endhighlight %}
{% highlight c# tabtitle="ClipboardController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/clipboard/clipboardController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/clipboard/clipboardController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -77,10 +77,10 @@ The following example shows, how to prevent the paste action in spreadsheet. In
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/prevent-paste/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/prevent-paste/razor %}
{% endhighlight %}
{% highlight c# tabtitle="ClipboardController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/prevent-paste/clipboardController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/prevent-paste/clipboardController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/context-menu.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/context-menu.md
index ffd616f48..a15e08631 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/context-menu.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/context-menu.md
@@ -8,7 +8,7 @@ documentation: ug
---
-# Context Menu in Spreadsheet control
+# Context Menu in ASP.NET MVC Spreadsheet control
Context Menu is used to improve user interaction with Spreadsheet using the popup menu. This will open when right-clicking on Cell/Column Header/Row Header/ Pager in the Spreadsheet. You can use [`enableContextMenu`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_EnableContextMenu) property to enable/disable context menu.
@@ -71,10 +71,10 @@ In this demo, Custom Item is added after the Paste item in the context menu.
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/add-context-menu/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/add-context-menu/razor %}
{% endhighlight %}
{% highlight c# tabtitle="AddContextMenu.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/add-context-menu/addContextMenu.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/add-context-menu/addContextMenu.cs %}
{% endhighlight %}
{% endtabs %}
@@ -88,10 +88,10 @@ In this demo, Insert Column item has been removed from the row/column header con
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/remove-context-menu/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/remove-context-menu/razor %}
{% endhighlight %}
{% highlight c# tabtitle="RemoveContextMenu.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/remove-context-menu/removeContextMenu.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/remove-context-menu/removeContextMenu.cs %}
{% endhighlight %}
{% endtabs %}
@@ -105,10 +105,10 @@ In this demo, Rename item is disabled in the pager context menu.
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/enable-context-menu/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/enable-context-menu/razor %}
{% endhighlight %}
{% highlight c# tabtitle="EnableContextMenu.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/enable-context-menu/enableContextMenu.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/enable-context-menu/enableContextMenu.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/data-binding.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/data-binding.md
index 1b8f99443..71229e811 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/data-binding.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/data-binding.md
@@ -22,10 +22,10 @@ Refer to the following code example for local data binding.
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/local-data-binding/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/local-data-binding/razor %}
{% endhighlight %}
{% highlight c# tabtitle="LocalDataController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/local-data-binding/localDataController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/local-data-binding/localDataController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -44,10 +44,10 @@ The following code example demonstrates how to customize the mapping of column d
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/field-mapping/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/field-mapping/razor %}
{% endhighlight %}
{% highlight c# tabtitle="FieldMappingController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/field-mapping/fieldMappingController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/field-mapping/fieldMappingController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -59,10 +59,10 @@ Refer to the following code example for remote data binding.
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/remote-data-binding/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/remote-data-binding/razor %}
{% endhighlight %}
{% highlight c# tabtitle="RemoteDataController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/remote-data-binding/remoteDataController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/remote-data-binding/remoteDataController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -76,10 +76,10 @@ N> By default, `DataManager` uses **ODataAdaptor** for remote data-binding.
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/odata-adaptor/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/odata-adaptor/razor %}
{% endhighlight %}
{% highlight c# tabtitle="ODataController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/odata-adaptor/oDataController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/odata-adaptor/oDataController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -91,10 +91,10 @@ You can use WebApiAdaptor to bind spreadsheet with Web API created using OData e
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/webapi-adaptor/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/webapi-adaptor/razor %}
{% endhighlight %}
{% highlight c# tabtitle="WebApiController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/webapi-adaptor/webApiController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/webapi-adaptor/webApiController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -108,10 +108,10 @@ Refer to the following code example for cell data binding.
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/cell-data-binding/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/cell-data-binding/razor %}
{% endhighlight %}
{% highlight c# tabtitle="CellDataController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/cell-data-binding/cellDataController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/cell-data-binding/cellDataController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -137,10 +137,10 @@ N> For `add` action, the value for all the fields will be `null` in the data. In
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/dynamic-data-binding/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/dynamic-data-binding/razor %}
{% endhighlight %}
{% highlight c# tabtitle="DynamicDataController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/dynamic-data-binding/dynamicDataController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/dynamic-data-binding/dynamicDataController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -154,10 +154,10 @@ The following code example demonstrates how to dynamically update data using the
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/dynamic-data-binding-cs2/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/dynamic-data-binding-cs2/razor %}
{% endhighlight %}
{% highlight c# tabtitle="UpdateRangeController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/dynamic-data-binding-cs2/updateRangeController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/dynamic-data-binding-cs2/updateRangeController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/editing.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/editing.md
index 4ec612f3c..33924a8fc 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/editing.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/editing.md
@@ -41,10 +41,10 @@ The following sample shows how to prevent the editing and cell save. Here `E` co
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/editing/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/editing/razor %}
{% endhighlight %}
{% highlight c# tabtitle="EditingController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/editing/editingController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/editing/editingController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/feature-list.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/feature-list.md
index b19de58e4..55a888e42 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/feature-list.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/feature-list.md
@@ -8,7 +8,7 @@ documentation: ug
---
-# Comparision between EJ1 & EJ2 Spreadsheet features
+# Comparison between EJ1 & EJ2 ASP.NET MVC Spreadsheet features
The following table compares Excel functionality with the availability of EJ1 and EJ2 Spreadsheet features.
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/filter.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/filter.md
index cf1d304a5..1c47a9cf7 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/filter.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/filter.md
@@ -8,7 +8,7 @@ documentation: ug
---
-# Filtering in Spreadsheet control
+# Filtering in ASP.NET MVC Spreadsheet control
Filtering helps you to view specific rows in the spreadsheet by hiding the other rows. You can use the [`allowFiltering`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_AllowFiltering) property to enable or disable filtering functionality.
@@ -38,10 +38,10 @@ The following code example shows `filter` functionality in the Spreadsheet contr
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/filter/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/filter/razor %}
{% endhighlight %}
{% highlight c# tabtitle="FilterController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/filter/filterController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/filter/filterController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -87,10 +87,10 @@ The following code example shows how to get the filtered rows.
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/filter-cs1/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/filter-cs1/razor %}
{% endhighlight %}
{% highlight c# tabtitle="InsertSheetController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/filter-cs1/filterController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/filter-cs1/filterController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/formatting.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/formatting.md
index 1dc5128ce..6fd07d316 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/formatting.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/formatting.md
@@ -1,14 +1,14 @@
---
layout: post
-title: Formatting in EJ2 ASP.NET MVC Syncfusion Spreadsheet Component
-description: Learn here all about Formatting in Syncfusion EJ2 ASP.NET MVC Spreadsheet component of Syncfusion Essential JS 2 and more.
+title: Formatting in EJ2 ASP.NET MVC Syncfusion Spreadsheet Control
+description: Learn here all about Formatting in Syncfusion EJ2 ASP.NET MVC Spreadsheet Control of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Formatting
documentation: ug
---
-# Formatting in Spreadsheet Component
+# Formatting in ASP.NET MVC Spreadsheet Control
Formatting options make your data easier to view and understand. The different types of formatting options in the Spreadsheet are,
* Number Formatting
@@ -91,10 +91,10 @@ The following code example shows the number formatting in cell data.
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/number-format/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/number-format/razor %}
{% endhighlight %}
{% highlight c# tabtitle="NumberFormatController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/number-format/numberFormatController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/number-format/numberFormatController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -146,10 +146,10 @@ The following code example demonstrates how to configure culture-based formats f
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/globalization-cs1/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/globalization-cs1/razor %}
{% endhighlight %}
{% highlight c# tabtitle="CultureController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/globalization-cs1/cultureController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/globalization-cs1/cultureController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -214,10 +214,10 @@ The following code example shows the style formatting in text and cells of the s
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/cell-format/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/cell-format/razor %}
{% endhighlight %}
{% highlight c# tabtitle="CellFormatController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/cell-format/cellFormatController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/cell-format/cellFormatController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -311,10 +311,10 @@ You can clear the defined rules by using one of the following ways,
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/conditional-formatting/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/conditional-formatting/razor %}
{% endhighlight %}
{% highlight c# tabtitle="ConditionalFormattingController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/conditional-formatting/conditionalFormattingController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/conditional-formatting/conditionalFormattingController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/formulas.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/formulas.md
index cf7733e31..171a7ae28 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/formulas.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/formulas.md
@@ -1,14 +1,14 @@
---
layout: post
-title: Formulas in EJ2 ASP.NET MVC Syncfusion Spreadsheet Component
-description: Learn here all about Formulas in Syncfusion EJ2 ASP.NET MVC Spreadsheet component of Syncfusion Essential JS 2 and more.
+title: Formulas in EJ2 ASP.NET MVC Syncfusion Spreadsheet Control
+description: Learn here all about Formulas in Syncfusion EJ2 ASP.NET MVC Spreadsheet Control of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Formulas
documentation: ug
---
-# Formulas in Spreadsheet control
+# Formulas in ASP.NET MVC Spreadsheet Control
Formulas are used for calculating the data in a worksheet. You can refer the cell reference from same sheet or from different sheets.
@@ -29,14 +29,14 @@ Previously, although you could import culture-based Excel files into the Spreads
When loading spreadsheet data with culture-based formula argument separators using cell data binding, local/remote data, or JSON, ensure to set the [listSeparator](https://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.spreadsheet.spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_ListSeparator) property value as the culture-based list separator from your end. Additionally, note that when importing an Excel file, the [listSeparator](https://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.spreadsheet.spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_ListSeparator) property will be updated based on the culture of the launched import/export service.
-In the example below, the Spreadsheet control is rendered with the `German culture (de)`. Additionally, you can find references on how to set the culture-based argument separator and culture-based formatted numeric value as arguments to the formulas.
+In the example below, the Spreadsheet control is rendered with the `German culture` [`de`]. Additionally, you can find references on how to set the culture-based argument separator and culture-based formatted numeric value as arguments to the formulas.
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/formula-cs3/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/formula-cs3/razor %}
{% endhighlight %}
{% highlight c# tabtitle="FormulaController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/formula-cs3/formulaController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/formula-cs3/formulaController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -50,10 +50,10 @@ The following code example shows an unsupported formula in the spreadsheet.
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/formula/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/formula/razor %}
{% endhighlight %}
{% highlight c# tabtitle="FormulaController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/formula/formulaController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/formula/formulaController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -63,10 +63,10 @@ The following code example shows how to use `computeExpression` method in the sp
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/formula-cs2/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/formula-cs2/razor %}
{% endhighlight %}
{% highlight c# tabtitle="FormulaController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/formula-cs2/formulaController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/formula-cs2/formulaController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -87,10 +87,10 @@ The following code example shows the usage of named ranges support.
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/defined-names/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/defined-names/razor %}
{% endhighlight %}
{% highlight c# tabtitle="DefinedNameController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/defined-names/definedNameController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/defined-names/definedNameController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -113,10 +113,10 @@ The following code example demonstrates how to set the Automatic calculation mod
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/calculation-cs1/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/calculation-cs1/razor %}
{% endhighlight %}
{% highlight c# tabtitle="CalculationModeController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/calculation-cs1/calculationModeController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/calculation-cs1/calculationModeController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -133,10 +133,10 @@ The following code example demonstrates how to set the Manual calculation mode i
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/calculation-cs2/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/calculation-cs2/razor %}
{% endhighlight %}
{% highlight c# tabtitle="CalculationModeController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/calculation-cs2/calculationModeController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/calculation-cs2/calculationModeController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/freeze-pane.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/freeze-pane.md
index 8dea27316..160d5069e 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/freeze-pane.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/freeze-pane.md
@@ -8,11 +8,11 @@ documentation: ug
---
-# FreezePanes in Spreadsheet control
+# FreezePanes in ASP.NET MVC Spreadsheet control
Freeze Panes helps you to keep particular rows or columns visible when scrolling the sheet content in the spreadsheet. You can specify the number of frozen rows and columns using the `frozenRows` and `frozenColumns` properties inside the [`Sheet`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_Sheets) property.
-## Apply freezepanes on UI
+## Apply freeze panes on UI
**User Interface**:
@@ -47,10 +47,10 @@ In this demo, the frozenColumns is set as ‘2’, and the frozenRows is set as
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/freeze-pane/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/freeze-pane/razor %}
{% endhighlight %}
{% highlight c# tabtitle="FreezePane.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/freeze-pane/freezePane.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/freeze-pane/freezePane.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/getting-started-mvc.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/getting-started-mvc.md
index 347822fb0..2a4078d2a 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/getting-started-mvc.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/getting-started-mvc.md
@@ -88,7 +88,7 @@ Now, add the Syncfusion® ASP.NET MVC Spread
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/getting-started-mvc/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/getting-started-mvc/razor %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/global-local.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/global-local.md
index bafda5f26..1f2b8fb00 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/global-local.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/global-local.md
@@ -382,10 +382,10 @@ The following example demonstrates the Spreadsheet in `French` culture. In the b
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/locale/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/locale/razor %}
{% endhighlight %}
{% highlight c# tabtitle="LocaleController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/locale/localeController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/locale/localeController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -399,10 +399,10 @@ The following example demonstrates the Spreadsheet in French [ `fr-CH`] culture.
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/internationalization/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/internationalization/razor %}
{% endhighlight %}
{% highlight c# tabtitle="InternationalizationController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/internationalization/internationalizationController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/internationalization/internationalizationController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -414,10 +414,10 @@ RTL provides an option to switch the text direction and layout of the Spreadshee
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/rtl/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/rtl/razor %}
{% endhighlight %}
{% highlight c# tabtitle="RtlController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/rtl/rtlController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/rtl/rtlController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/how-to/change-active-sheet.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/how-to/change-active-sheet.md
index a9e614838..ee6a779fe 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/how-to/change-active-sheet.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/how-to/change-active-sheet.md
@@ -7,7 +7,7 @@ control: Spreadsheet
documentation: ug
---
-# Changing the active sheet in Spreadsheet control
+# Changing the active sheet in ASP.NET MVC Spreadsheet control
You can change the active sheet of imported file by updating [`activeSheetIndex`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_ActiveSheetIndex) property on the [`openComplete`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_OpenComplete) event.
@@ -15,9 +15,9 @@ The following code example shows how to set the active sheet when importing an E
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/change-active-sheet/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/change-active-sheet/razor %}
{% endhighlight %}
{% highlight c# tabtitle="OpenController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/change-active-sheet/opencontroller.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/change-active-sheet/opencontroller.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/how-to/identify-the-context-menu-opened.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/how-to/identify-the-context-menu-opened.md
index 92e2f5b63..14158f3ac 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/how-to/identify-the-context-menu-opened.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/how-to/identify-the-context-menu-opened.md
@@ -7,7 +7,7 @@ control: Spreadsheet
documentation: ug
---
-## Identify the context menu opened in Spreadsheet control
+## Identify the context menu opened in ASP.NET MVC Spreadsheet control
The Spreadsheet includes several context menus that will open and display depending on the action. When you right-click on a cell, for example, a context menu with options related to the cell element appears.
@@ -24,6 +24,6 @@ The following code example shows how to identify the context menu opened.
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/find-target-context-menu/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/find-target-context-menu/razor %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/illustrations.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/illustrations.md
index e08bc788f..603c69d88 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/illustrations.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/illustrations.md
@@ -8,7 +8,7 @@ documentation: ug
---
-# Illustrations in Spreadsheet control
+# Illustrations in ASP.NET MVC Spreadsheet control
Illustrations helps you to insert a image, shapes and graphic objects in the Essential JS 2 spreadsheet.
@@ -71,10 +71,10 @@ Image feature allows you to view and insert a image in a spreadsheet and you can
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/image/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/image/razor %}
{% endhighlight %}
{% highlight c# tabtitle="ImageController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/image/imageController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/image/imageController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -128,10 +128,10 @@ The available arguments in the `ChartModel` are:
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/chart-cs1/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/chart-cs1/razor %}
{% endhighlight %}
{% highlight c# tabtitle="ChartController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/chart-cs1/chartController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/chart-cs1/chartController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -156,10 +156,10 @@ Chart feature allows you to view and insert a chart in a spreadsheet, and you ca
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/chart/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/chart/razor %}
{% endhighlight %}
{% highlight c# tabtitle="ChartController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/chart/chartController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/chart/chartController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -169,10 +169,10 @@ Using the [`actionBegin`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusi
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/chart-cs2/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/chart-cs2/razor %}
{% endhighlight %}
{% highlight c# tabtitle="ChartController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/chart-cs2/chartController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/chart-cs2/chartController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/keyboard-shortcuts.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/keyboard-shortcuts.md
index 31d1bc6f4..daff6d71c 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/keyboard-shortcuts.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/keyboard-shortcuts.md
@@ -1,14 +1,14 @@
---
layout: post
-title: Keyboard Shortcuts in EJ2 ASP.NET MVC Syncfusion Spreadsheet Component
-description: Learn here all about Keyboard Shortcuts in Syncfusion EJ2 ASP.NET MVC Spreadsheet component of Syncfusion Essential JS 2 and more.
+title: Keyboard Shortcuts in ASP.NET MVC Spreadsheet Control
+description: Learn about Keyboard Shortcuts in ASP.NET MVC Spreadsheet Control of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Keyboard Shortcuts
documentation: ug
---
-# Keyboard Shortcuts And Navigation
+# Keyboard Shortcuts And Navigation in ASP.NET MVC Spreadsheet Control
The keyboard shortcuts supported in the spreadsheet are,
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/link.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/link.md
index 56b68901f..ae8dffedd 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/link.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/link.md
@@ -8,7 +8,7 @@ documentation: ug
---
-# Hyperlink in Spreadsheet control
+# Hyperlink in ASP.NET MVC Spreadsheet control
Hyperlink is used to navigate to web links or cell reference within the sheet or to other sheets in Spreadsheet. You can use the [`allowHyperlink`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_AllowHyperlink) property to enable or disable hyperlink functionality.
@@ -54,10 +54,10 @@ There is an event named `beforeHyperlinkClick` which triggers only on clicking h
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/link/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/link/razor %}
{% endhighlight %}
{% highlight c# tabtitle="HyperlinkController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/link/hyperlinkController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/link/hyperlinkController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/mobile-responsiveness.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/mobile-responsiveness.md
index 0b71470ff..b3f59489f 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/mobile-responsiveness.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/mobile-responsiveness.md
@@ -1,14 +1,14 @@
---
layout: post
-title: Mobile Responsiveness in EJ2 ASP.NET MVC Syncfusion Spreadsheet Component
-description: Learn here all about Mobile Responsiveness in Syncfusion EJ2 ASP.NET MVC Spreadsheet component of Syncfusion Essential JS 2 and more.
+title: Mobile Responsiveness in ASP.NET MVC Syncfusion Spreadsheet Control
+description: Learn about Mobile Responsiveness in ASP.NET MVC Spreadsheet Control of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Mobile Responsiveness
documentation: ug
---
-# Mobile Responsiveness
+# Mobile Responsiveness in ASP.NET MVC Syncfusion Spreadsheet Control
The Spreadsheet control rendered in desktop mode will be adaptive in all mobile devices where the layout gets adjusted based on their parent element’s dimensions to accommodate any resolution.
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/notes.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/notes.md
index 56f32ece7..ecaeea236 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/notes.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/notes.md
@@ -8,7 +8,7 @@ documentation: ug
---
-# Notes in Spreadsheet control
+# Notes in ASP.NET MVC Spreadsheet Control
The **Notes** feature is used to insert comments, provide feedback, suggest changes, or leave remarks on specific cells while reviewing documents in the Spreadsheet. You can enable or disable the notes functionality using the [`enableNotes`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_EnableNotes) property, which defaults to **true**.
@@ -20,10 +20,10 @@ In the below example, you can add, edit, save, and delete notes.
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/note-cs1/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/note-cs1/razor %}
{% endhighlight %}
{% highlight c# tabtitle="NotesController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/note-cs1/notesController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/note-cs1/notesController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -70,10 +70,10 @@ In the below example, the note functionality is disabled in the Spreadsheet.
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/note-cs2/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/note-cs2/razor %}
{% endhighlight %}
{% highlight c# tabtitle="NotesController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/note-cs2/notesController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/note-cs2/notesController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -83,10 +83,10 @@ The notes can be added initially when the Spreadsheet loads using cell data bind
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/note-cs3/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/note-cs3/razor %}
{% endhighlight %}
{% highlight c# tabtitle="NotesController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/note-cs3/notesController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/note-cs3/notesController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/open-save.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/open-save.md
index 7d94adec7..1ec84e752 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/open-save.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/open-save.md
@@ -1,14 +1,14 @@
---
layout: post
-title: Open Save in EJ2 ASP.NET MVC Syncfusion Spreadsheet Component
-description: Learn here all about Open Save in Syncfusion EJ2 ASP.NET MVC Spreadsheet component of Syncfusion Essential JS 2 and more.
+title: Open Save in EJ2 ASP.NET MVC Syncfusion Spreadsheet Control
+description: Learn here all about Open Save in Syncfusion EJ2 ASP.NET MVC Spreadsheet Control of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Open Save
documentation: ug
---
-# Open and Save in Spreadsheet control
+# Open and Save in ASP.NET MVC Spreadsheet Control
To import an excel file, it needs to be read and converted to client side Spreadsheet model. The converted client side Spreadsheet model is sent as JSON which is used to render Spreadsheet. Similarly, when you save the Spreadsheet, the client Spreadsheet model is sent to the server as JSON for processing and saved. Server configuration is used for this process.
@@ -24,10 +24,10 @@ The following sample shows the `Open` option by using the [`openUrl`](https://he
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/open/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/open/razor %}
{% endhighlight %}
{% highlight c# tabtitle="Opencontroller.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/open/opencontroller.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/open/opencontroller.cs %}
{% endhighlight %}
{% endtabs %}
@@ -52,10 +52,10 @@ The following code example shows how to import an excel document using file uplo
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/open-uploader/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/open-uploader/razor %}
{% endhighlight %}
{% highlight c# tabtitle="Opencontroller.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/open-uploader/opencontroller.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/open-uploader/opencontroller.cs %}
{% endhighlight %}
{% endtabs %}
@@ -65,10 +65,10 @@ You can achieve to access the remote excel file by using the [`created`](https:/
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/open-url/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/open-url/razor %}
{% endhighlight %}
{% highlight c# tabtitle="Opencontroller.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/open-url/opencontroller.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/open-url/opencontroller.cs %}
{% endhighlight %}
{% endtabs %}
@@ -80,10 +80,10 @@ Please find the code to fetch the blob data and load it into the Spreadsheet con
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/open-from-blob/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/open-from-blob/razor %}
{% endhighlight %}
{% highlight c# tabtitle="OpenController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/open-from-blob/opencontroller.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/open-from-blob/opencontroller.cs %}
{% endhighlight %}
{% endtabs %}
@@ -205,10 +205,10 @@ The following code example shows how to open the spreadsheet data as base64 stri
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/base-64-string/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/base-64-string/razor %}
{% endhighlight %}
{% highlight c# tabtitle="OpenController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/base-64-string/opencontroller.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/base-64-string/opencontroller.cs %}
{% endhighlight %}
{% endtabs %}
@@ -218,10 +218,10 @@ You can open excel file into a read-only mode by using the [`openComplete`](http
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/open-readonly/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/open-readonly/razor %}
{% endhighlight %}
{% highlight c# tabtitle="Opencontroller.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/open-readonly/opencontroller.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/open-readonly/opencontroller.cs %}
{% endhighlight %}
{% endtabs %}
@@ -253,10 +253,10 @@ The following code snippet demonstrates how to configure the deserialization opt
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/open-from-json/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/open-from-json/razor %}
{% endhighlight %}
{% highlight c# tabtitle="OpenController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/open-from-json/openController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/open-from-json/openController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -340,10 +340,10 @@ You can add your own custom header to the open action in the Spreadsheet. For pr
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/open-header/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/open-header/razor %}
{% endhighlight %}
{% highlight c# tabtitle="Opencontroller.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/open-header/opencontroller.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/open-header/opencontroller.cs %}
{% endhighlight %}
{% endtabs %}
@@ -385,10 +385,10 @@ The following sample shows the `Save` option by using the [`saveUrl`](https://he
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/save/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/save/razor %}
{% endhighlight %}
{% highlight c# tabtitle="Savecontroller.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/save/savecontroller.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/save/savecontroller.cs %}
{% endhighlight %}
{% endtabs %}
@@ -418,10 +418,10 @@ Please find below the code to retrieve blob data from the Spreadsheet control be
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/save-as-blob/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/save-as-blob/razor %}
{% endhighlight %}
{% highlight c# tabtitle="SaveController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/save-as-blob/savecontroller.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/save-as-blob/savecontroller.cs %}
{% endhighlight %}
{% endtabs %}
@@ -569,10 +569,10 @@ The following code example shows how to save the spreadsheet data as base64 stri
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/base-64-string/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/base-64-string/razor %}
{% endhighlight %}
{% highlight c# tabtitle="OpenController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/base-64-string/opencontroller.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/base-64-string/opencontroller.cs %}
{% endhighlight %}
{% endtabs %}
@@ -604,10 +604,10 @@ The following code snippet demonstrates how to configure the serialization optio
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/save-as-json/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/save-as-json/razor %}
{% endhighlight %}
{% highlight c# tabtitle="SaveController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/save-as-json/saveController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/save-as-json/saveController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -617,10 +617,10 @@ Passing the custom parameters from client to server by using [`beforeSave`](http
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/custom-params/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/custom-params/razor %}
{% endhighlight %}
{% highlight c# tabtitle="CustomParamsController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/custom-params/customParamsController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/custom-params/customParamsController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -630,10 +630,10 @@ You can add your own custom header to the save action in the Spreadsheet. For pr
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/save-header/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/save-header/razor %}
{% endhighlight %}
{% highlight c# tabtitle="CustomHeaderController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/save-header/CustomHeaderController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/save-header/CustomHeaderController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -648,10 +648,10 @@ The possible values are:
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/pdf-orientation/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/pdf-orientation/razor %}
{% endhighlight %}
{% highlight c# tabtitle="pdfOrientationController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/pdf-orientation/pdfOrientationController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/pdf-orientation/pdfOrientationController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -670,10 +670,10 @@ To save the Spreadsheet document as an `xlsx, xls, csv, or pdf` file, by using `
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/open-save/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/open-save/razor %}
{% endhighlight %}
{% highlight c# tabtitle="OpenSaveController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/open-save/openSaveController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/open-save/openSaveController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/print.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/print.md
index f11890ba6..1bc5cf764 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/print.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/print.md
@@ -8,7 +8,7 @@ documentation: ug
---
-# Print in Spreadsheet control
+# Print in ASP.NET MVC Spreadsheet control
The printing functionality allows end-users to print all contents, such as tables, charts, images, and formatted contents, available in the active worksheet or entire workbook in the Spreadsheet. You can enable or disable print functionality by using the `allowPrint` property, which defaults to **true**.
@@ -32,10 +32,10 @@ The `printOptions` contain three properties, as described below.
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/print-cs2/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/print-cs2/razor %}
{% endhighlight %}
{% highlight c# tabtitle="PrintController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/print-cs2/printController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/print-cs2/printController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -47,10 +47,10 @@ The printing functionality in the Spreadsheet can be disabled by setting the [`a
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/print-cs3/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/print-cs3/razor %}
{% endhighlight %}
{% highlight c# tabtitle="PrintController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/print-cs3/printController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/print-cs3/printController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/protect-sheet.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/protect-sheet.md
index 91e1aab08..378772e0d 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/protect-sheet.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/protect-sheet.md
@@ -46,10 +46,10 @@ The following example shows `Protect Sheet` functionality with password in the S
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/protect-sheet/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/protect-sheet/razor %}
{% endhighlight %}
{% highlight c# tabtitle="ProtectSheetController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/protect-sheet/protectSheetController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/protect-sheet/protectSheetController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -77,10 +77,10 @@ In protected spreadsheet, to make some particular cell or range of cells are edi
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/lock-cells/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/lock-cells/razor %}
{% endhighlight %}
{% highlight c# tabtitle="LockCellController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/lock-cells/lockCellController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/lock-cells/lockCellController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -115,10 +115,10 @@ The following example demonstrates how to make rows, columns, and cells read-onl
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/read-only/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/read-only/razor %}
{% endhighlight %}
{% highlight c# tabtitle="ReadOnlyController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/read-only/readOnlyController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/read-only/readOnlyController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -140,10 +140,10 @@ The following example shows `Protect Workbook` by using the [`isProtected`](http
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/protect-workbook/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/protect-workbook/razor %}
{% endhighlight %}
{% highlight c# tabtitle="ProtectWorkbookController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/protect-workbook/protectWorkbookController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/protect-workbook/protectWorkbookController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -153,10 +153,10 @@ The following example shows `Protect Workbook` by using the [`password`](https:/
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/password/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/password/razor %}
{% endhighlight %}
{% highlight c# tabtitle="PasswordController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/password/passwordController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/password/passwordController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/ribbon.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/ribbon.md
index 9e8c8ad14..65a9b620b 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/ribbon.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/ribbon.md
@@ -1,14 +1,14 @@
---
layout: post
-title: Ribbon in EJ2 ASP.NET MVC Syncfusion Spreadsheet Component
-description: Learn here all about Ribbon in Syncfusion EJ2 ASP.NET MVC Spreadsheet component of Syncfusion Essential JS 2 and more.
+title: Ribbon in EJ2 ASP.NET MVC Syncfusion Spreadsheet Control
+description: Learn here all about Ribbon in Syncfusion EJ2 ASP.NET MVC Spreadsheet Control of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Ribbon
documentation: ug
---
-# Ribbon in Spreadsheet control
+# Ribbon in ASP.NET MVC Spreadsheet Control
It helps to organize a spreadsheet’s features into a series of tabs. By clicking the expand or collapse icon, you can expand or collapse the ribbon toolbar dynamically.
@@ -37,10 +37,10 @@ The following code example shows the usage of ribbon customization.
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/ribbon/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/ribbon/razor %}
{% endhighlight %}
{% highlight c# tabtitle="RibbonController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/ribbon/ribbonController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/ribbon/ribbonController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/rows-and-columns.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/rows-and-columns.md
index b402a0c47..3a464af04 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/rows-and-columns.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/rows-and-columns.md
@@ -8,7 +8,7 @@ documentation: ug
---
-# Rows and columns in Spreadsheet control
+# Rows and columns in ASP.NET MVC Spreadsheet control
Spreadsheet is a tabular format consisting of rows and columns. The intersection point of rows and columns are called as cells. The list of operations that you can perform in rows and columns are,
@@ -31,10 +31,10 @@ The following code example shows the options for inserting rows in the spreadshe
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/insert-row/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/insert-row/razor %}
{% endhighlight %}
{% highlight c# tabtitle="InsertRowController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/insert-row/insertRowController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/insert-row/insertRowController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -51,10 +51,10 @@ The following code example shows the options for inserting columns in the spread
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/insert-column/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/insert-column/razor %}
{% endhighlight %}
{% highlight c# tabtitle="InsertColumnController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/insert-column/insertColumnController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/insert-column/insertColumnController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -73,10 +73,10 @@ The following code example shows the delete operation of rows and columns in the
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/delete-row/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/delete-row/razor %}
{% endhighlight %}
{% highlight c# tabtitle="DeleteRowController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/delete-row/deleteRowController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/delete-row/deleteRowController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -106,10 +106,10 @@ The following code example shows the hide/show rows and columns operation in the
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/show-hide/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/show-hide/razor %}
{% endhighlight %}
{% highlight c# tabtitle="ShowHideController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/show-hide/showHideController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/show-hide/showHideController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -134,10 +134,10 @@ The following code example shows how to change the height for single/multiple ro
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/row-height/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/row-height/razor %}
{% endhighlight %}
{% highlight c# tabtitle="RowHeightController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/row-height/rowHeightController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/row-height/rowHeightController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -156,10 +156,10 @@ The following code example shows how to change the width for single/multiple col
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/column-width/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/column-width/razor %}
{% endhighlight %}
{% highlight c# tabtitle="ColumnWidthController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/column-width/columnWidthController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/column-width/columnWidthController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -171,7 +171,7 @@ The following code example shows how to change the text in the column headers.
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/column-header-change/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/column-header-change/razor %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/scrolling.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/scrolling.md
index b1aa4939a..d61a3d66e 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/scrolling.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/scrolling.md
@@ -1,14 +1,14 @@
---
layout: post
-title: Scrolling in EJ2 ASP.NET MVC Syncfusion Spreadsheet Component
-description: Learn here all about Scrolling in Syncfusion EJ2 ASP.NET MVC Spreadsheet component of Syncfusion Essential JS 2 and more.
+title: Scrolling in EJ2 ASP.NET MVC Syncfusion Spreadsheet Control
+description: Learn here all about Scrolling in Syncfusion EJ2 ASP.NET MVC Spreadsheet Control of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Scrolling
documentation: ug
---
-# Scrolling in Spreadsheet control
+# Scrolling in ASP.NET MVC Spreadsheet Control
Scrolling helps you to move quickly to different areas of the worksheet. It moves faster if we use horizontal and vertical scroll bars. Scrolling can be enabled by setting the [`allowScrolling`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_AllowScrolling) as true.
@@ -53,10 +53,10 @@ The following code example shows the finite scrolling with defined rows and colu
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/scrolling/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/scrolling/razor %}
{% endhighlight %}
{% highlight c# tabtitle="ScrollingController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/scrolling/scrollingController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/scrolling/scrollingController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/searching.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/searching.md
index 4680182df..427f05437 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/searching.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/searching.md
@@ -1,14 +1,14 @@
---
layout: post
-title: Searching in EJ2 ASP.NET MVC Syncfusion Spreadsheet Component
-description: Learn here all about Searching in Syncfusion EJ2 ASP.NET MVC Spreadsheet component of Syncfusion Essential JS 2 and more.
+title: Searching in EJ2 ASP.NET MVC Syncfusion Spreadsheet Control
+description: Learn here all about Searching in Syncfusion EJ2 ASP.NET MVC Spreadsheet Control of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Searching
documentation: ug
---
-# Find and Replace in Spreadsheet control
+# Find and Replace in ASP.NET MVC Spreadsheet Control
Find and Replace helps you to search for the target text and replace the found text with alternative text within the sheet or workbook. You can use the [`allowFindAndReplace`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_AllowFindAndReplace) property to enable or disable the Find and Replace functionality.
@@ -65,10 +65,10 @@ In the following sample, searching can be done by following ways:
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/search/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/search/razor %}
{% endhighlight %}
{% highlight c# tabtitle="SearchController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/search/searchController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/search/searchController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/selection.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/selection.md
index 61c746970..18aac4270 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/selection.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/selection.md
@@ -1,14 +1,14 @@
---
layout: post
title: Selection in EJ2 ASP.NET MVC Spreadsheet Control | Syncfusion
-description: Learn here all about Selection in Syncfusion EJ2 ASP.NET MVC Spreadsheet component of Syncfusion Essential JS 2 and more.
+description: Learn here all about Selection in Syncfusion EJ2 ASP.NET MVC Spreadsheet Control of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Selection
documentation: ug
---
-# Selection in Spreadsheet Control
+# Selection in ASP.NET MVC Spreadsheet Control
Selection provides interactive support to highlight the cell, row, or column that you select. Selection can be done through Mouse, Touch, or Keyboard interaction. To enable selection, set `mode` as `Single` or `Multiple` in [`selectionSettings`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_SelectionSettings). If you set `mode` to `None`, it disables the UI selection.
@@ -49,10 +49,10 @@ The following sample shows the row selection in the spreadsheet, here selecting
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/row-selection/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/row-selection/razor %}
{% endhighlight %}
{% highlight c# tabtitle="SelectionController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/row-selection/selectionController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/row-selection/selectionController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -75,10 +75,10 @@ The following sample shows the column selection in the spreadsheet, here selecti
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/column-selection/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/column-selection/razor %}
{% endhighlight %}
{% highlight c# tabtitle="SelectionController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/column-selection/selectionController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/column-selection/selectionController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -90,10 +90,10 @@ Below is a code example demonstrating how to retrieve the selected cell values a
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/selected-cell-values/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/selected-cell-values/razor %}
{% endhighlight %}
{% highlight c# tabtitle="SelectedCellValuesController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/selected-cell-values/selectedCellValuesController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/selected-cell-values/selectedCellValuesController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -103,10 +103,10 @@ The following sample shows, how to remove the selection in the spreadsheet. Here
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/disable-selection/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/disable-selection/razor %}
{% endhighlight %}
{% highlight c# tabtitle="SelectionController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/disable-selection/selectionController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/disable-selection/selectionController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/sort.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/sort.md
index 0c3bd0a8d..eb9118fa6 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/sort.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/sort.md
@@ -1,14 +1,14 @@
---
layout: post
-title: Sort in EJ2 ASP.NET MVC Syncfusion Spreadsheet Component
-description: Learn here all about Sort in Syncfusion EJ2 ASP.NET MVC Spreadsheet component of Syncfusion Essential JS 2 and more.
+title: Sort in EJ2 ASP.NET MVC Syncfusion Spreadsheet Control
+description: Learn here all about Sort in Syncfusion EJ2 ASP.NET MVC Spreadsheet Control of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Sort
documentation: ug
---
-# Sorting in Spreadsheet control
+# Sorting in ASP.NET MVC Spreadsheet Control
Sorting helps arranging the data to a specific order in a selected range of cells. You can use the [`allowSorting`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_AllowSorting) property to enable or disable sorting functionality.
@@ -38,10 +38,10 @@ The following code example shows `sort` functionality in the Spreadsheet control
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/sort-by-cell/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/sort-by-cell/razor %}
{% endhighlight %}
{% highlight c# tabtitle="SortController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/sort-by-cell/sortController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/sort-by-cell/sortController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -112,10 +112,10 @@ N> * All the arguments are optional.
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/passing-sort/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/passing-sort/razor %}
{% endhighlight %}
{% highlight c# tabtitle="PassingSortController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/passing-sort/passingSortController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/passing-sort/passingSortController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -139,10 +139,10 @@ In the following demo, the `Trustworthiness` column is sorted based on the custo
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/custom-sort/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/custom-sort/razor %}
{% endhighlight %}
{% highlight c# tabtitle="CustomSortController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/custom-sort/customSortController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/custom-sort/customSortController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/template.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/template.md
index 028569f54..03b3fad4e 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/template.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/template.md
@@ -1,14 +1,14 @@
---
layout: post
-title: Template in EJ2 ASP.NET MVC Syncfusion Spreadsheet Component
-description: Learn here all about Template in Syncfusion EJ2 ASP.NET MVC Spreadsheet component of Syncfusion Essential JS 2 and more.
+title: Template in EJ2 ASP.NET MVC Syncfusion Spreadsheet Control
+description: Learn here all about Template in Syncfusion EJ2 ASP.NET MVC Spreadsheet Control of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Template
documentation: ug
---
-# Cell Template in Spreadsheet Control
+# Cell Template in ASP.NET MVC Spreadsheet Control
Cell Template is used for adding HTML elements into Spreadsheet. You can add the cell template in spreadsheet by using the `template` property and specify the address using the `address` property inside the `ranges` property. You can customize the HTML elements similar to Syncfusion® components (TextBox, DropDownList, RadioButton, MultiSelect, DatePicker etc) by using the `beforeCellRender` event. In this demo, Cell template is applied to `C2:C9` and instantiated with HTML input components like TextBox, RadioButton, TextArea. You need to bind the events to perform any operations through HTML elements or Syncfusion® components. Here, we have added `change` event in to the MultiSelect control, and we have updated the selected data into the spreadsheet cell through that change event.
@@ -16,10 +16,10 @@ The following code example describes the above behavior.
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/template/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/template/razor %}
{% endhighlight %}
{% highlight c# tabtitle="Template.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/template/template.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/template/template.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/undo-redo.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/undo-redo.md
index 954f041ad..346f634bf 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/undo-redo.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/undo-redo.md
@@ -1,14 +1,14 @@
---
layout: post
-title: Undo Redo in EJ2 ASP.NET MVC Syncfusion Spreadsheet Component
-description: Learn here all about Undo Redo in Syncfusion EJ2 ASP.NET MVC Spreadsheet component of Syncfusion Essential JS 2 and more.
+title: Undo Redo in EJ2 ASP.NET MVC Syncfusion Spreadsheet Control
+description: Learn here all about Undo Redo in Syncfusion EJ2 ASP.NET MVC Spreadsheet Control of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Undo Redo
documentation: ug
---
-# Undo and Redo in Spreadsheet control
+# Undo and Redo in ASP.NET MVC Spreadsheet control
`Undo` option helps you to undone the last action performed and `Redo` option helps you to do the same action which is reverted in the Spreadsheet. You can use the [`allowUndoRedo`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_AllowUndoRedo) property to enable or disable undo redo functionality in spreadsheet.
@@ -40,10 +40,10 @@ The following code example shows `How to update and customize your own actions f
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/undo-redo/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/undo-redo/razor %}
{% endhighlight %}
{% highlight c# tabtitle="UndoRedoController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/undo-redo/undoRedoController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/undo-redo/undoRedoController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/worksheet.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/worksheet.md
index bc6fe6a3c..bef592487 100644
--- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/worksheet.md
+++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/worksheet.md
@@ -1,14 +1,14 @@
---
layout: post
-title: Worksheet in EJ2 ASP.NET MVC Syncfusion Spreadsheet Component
-description: Learn here all about Worksheet in Syncfusion EJ2 ASP.NET MVC Spreadsheet component of Syncfusion Essential JS 2 and more.
+title: Worksheet in EJ2 ASP.NET MVC Syncfusion Spreadsheet Control
+description: Learn here all about Worksheet in Syncfusion EJ2 ASP.NET MVC Spreadsheet Control of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Worksheet
documentation: ug
---
-# Worksheet in Spreadsheet control
+# Worksheet in ASP.NET MVC Spreadsheet control
Worksheet is a collection of cells organized in the form of rows and columns that allows you to store, format, and manipulate the data.
@@ -24,10 +24,10 @@ The following code example shows the insert sheet operation in spreadsheet.
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/insert-sheet/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/insert-sheet/razor %}
{% endhighlight %}
{% highlight c# tabtitle="InsertSheetController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/insert-sheet/insertSheetController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/insert-sheet/insertSheetController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -39,10 +39,10 @@ The following code example shows how to insert a sheet programmatically and make
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/insert-sheet-change-active-sheet/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/insert-sheet-change-active-sheet/razor %}
{% endhighlight %}
{% highlight c# tabtitle="InsertSheetController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/insert-sheet-change-active-sheet/insertSheetController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/insert-sheet-change-active-sheet/insertSheetController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -78,10 +78,10 @@ The following code example shows the headers and gridlines operation in spreadsh
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/header-gridlines/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/header-gridlines/razor %}
{% endhighlight %}
{% highlight c# tabtitle="HeaderController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/header-gridlines/headerController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/header-gridlines/headerController.cs %}
{% endhighlight %}
{% endtabs %}
@@ -103,10 +103,10 @@ The following code example shows the three types of sheet visibility state.
{% tabs %}
{% highlight razor tabtitle="CSHTML" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/sheet-visiblity/razor %}
+{% include code-snippet/spreadsheet/asp-net-mvc/sheet-visiblity/razor %}
{% endhighlight %}
{% highlight c# tabtitle="SheetVisiblityController.cs" %}
-{% include code-snippet/excel/spreadsheet/asp-net-mvc/sheet-visiblity/sheetVisiblityController.cs %}
+{% include code-snippet/spreadsheet/asp-net-mvc/sheet-visiblity/sheetVisiblityController.cs %}
{% endhighlight %}
{% endtabs %}
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/accessibility.md b/Document-Processing/Excel/Spreadsheet/Angular/accessibility.md
index d2fc74ea9..19d4a8d89 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/accessibility.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/accessibility.md
@@ -111,7 +111,7 @@ The Spreadsheet component's accessibility levels are ensured through an [accessi
The accessibility compliance of the Spreadsheet component is shown in the following sample. Open the [sample](https://ej2.syncfusion.com/accessibility/spreadsheet.html) in a new window to evaluate the accessibility of the Spreadsheet component with accessibility tools.
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/accessibility" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/accessibility" %}
## See also
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/cell-range.md b/Document-Processing/Excel/Spreadsheet/Angular/cell-range.md
index bb91910ec..c4e800488 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/cell-range.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/cell-range.md
@@ -25,15 +25,15 @@ The following code example shows the wrap text functionality in spreadsheet.
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/wrap-text-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/wrap-text-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/wrap-text-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/wrap-text-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/wrap-text-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/wrap-text-cs1" %}
### Limitations of Wrap text
@@ -65,15 +65,15 @@ The following code example shows the merge cells operation in spreadsheet.
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/merge-cells-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/merge-cells-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/merge-cells-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/merge-cells-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/merge-cells-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/merge-cells-cs1" %}
### Limitations of Merge
@@ -126,15 +126,15 @@ You can clear the highlighted invalid data by using the following ways,
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/data-validation-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/data-validation-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/data-validation-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/data-validation-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/data-validation-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/data-validation-cs1" %}
### Custom Data validation
@@ -155,15 +155,15 @@ The following code example demonstrates how to add custom data validation with a
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/data-validation-cs2/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/data-validation-cs2/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/data-validation-cs2/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/data-validation-cs2/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/data-validation-cs2" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/data-validation-cs2" %}
### Limitations of Data validation
@@ -239,15 +239,15 @@ In the following sample, you can enable/disable the fill option on the button cl
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/autofill-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/autofill-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/autofill-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/autofill-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/autofill-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/autofill-cs1" %}
### Limitations of Autofill
@@ -282,15 +282,15 @@ Clear the cell contents and formats in the Spreadsheet document by using the [cl
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/clear-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/clear-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/clear-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/clear-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/clear-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/clear-cs1" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/clipboard.md b/Document-Processing/Excel/Spreadsheet/Angular/clipboard.md
index 3b6aa7566..ca6e72589 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/clipboard.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/clipboard.md
@@ -61,15 +61,15 @@ Paste can be done in one of the following ways.
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/clipboard-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/clipboard-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/clipboard-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/clipboard-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/clipboard-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/clipboard-cs1" %}
## Prevent the paste functionality
@@ -77,15 +77,15 @@ The following example shows, how to prevent the paste action in spreadsheet. In
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/clipboard-cs2/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/clipboard-cs2/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/clipboard-cs2/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/clipboard-cs2/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/clipboard-cs2" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/clipboard-cs2" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/context-menu.md b/Document-Processing/Excel/Spreadsheet/Angular/context-menu.md
index dfddf0d8a..d03529353 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/context-menu.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/context-menu.md
@@ -70,15 +70,15 @@ In this demo, Custom Item is added after the Paste item in the context menu.
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/contextmenu/addContextMenu-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/contextmenu/addContextMenu-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/contextmenu/addContextMenu-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/contextmenu/addContextMenu-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/contextmenu/addContextMenu-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/contextmenu/addContextMenu-cs1" %}
### Remove Context Menu Items
@@ -88,15 +88,15 @@ In this demo, Insert Column item has been removed from the row/column header con
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/contextmenu/addContextMenu-cs2/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/contextmenu/addContextMenu-cs2/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/contextmenu/addContextMenu-cs2/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/contextmenu/addContextMenu-cs2/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/contextmenu/addContextMenu-cs2" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/contextmenu/addContextMenu-cs2" %}
### Enable/Disable Context Menu Items
@@ -106,15 +106,15 @@ In this demo, Rename item is disabled in the pager context menu.
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/contextmenu/addContextMenu-cs3/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/contextmenu/addContextMenu-cs3/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/contextmenu/addContextMenu-cs3/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/contextmenu/addContextMenu-cs3/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/contextmenu/addContextMenu-cs3" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/contextmenu/addContextMenu-cs3" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/data-binding.md b/Document-Processing/Excel/Spreadsheet/Angular/data-binding.md
index 3a8f948d3..c1adfd666 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/data-binding.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/data-binding.md
@@ -21,15 +21,15 @@ Refer to the following code example for local data binding.
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/local-data-binding-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/local-data-binding-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/local-data-binding-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/local-data-binding-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/local-data-binding-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/local-data-binding-cs1" %}
> The local data source can also be provided as an instance of the [`DataManager`](https://helpej2.syncfusion.com/angular/documentation/data/). By default, [`DataManager`](https://helpej2.syncfusion.com/angular/documentation/data/) uses [`JsonAdaptor`](https://ej2.syncfusion.com/angular/documentation/data/adaptors#json-adaptor) for local data-binding.
@@ -43,15 +43,15 @@ The following code example demonstrates how to customize the mapping of column d
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/field-mapping-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/field-mapping-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/field-mapping-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/field-mapping-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/field-mapping-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/field-mapping-cs1" %}
## Remote data
@@ -61,15 +61,15 @@ Refer to the following code example for remote data binding.
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/remote-data-binding-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/remote-data-binding-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/remote-data-binding-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/remote-data-binding-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/remote-data-binding-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/remote-data-binding-cs1" %}
> By default, `DataManager` uses **ODataAdaptor** for remote data-binding.
@@ -79,15 +79,15 @@ Refer to the following code example for remote data binding.
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/remote-data-binding-cs2/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/remote-data-binding-cs2/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/remote-data-binding-cs2/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/remote-data-binding-cs2/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/remote-data-binding-cs2" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/remote-data-binding-cs2" %}
### Web API
@@ -95,15 +95,15 @@ You can use WebApiAdaptor to bind spreadsheet with Web API created using OData e
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/remote-data-binding-cs3/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/remote-data-binding-cs3/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/remote-data-binding-cs3/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/remote-data-binding-cs3/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/remote-data-binding-cs3" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/remote-data-binding-cs3" %}
## Cell data binding
@@ -113,15 +113,15 @@ Refer to the following code example for cell data binding.
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/cell-data-binding-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/cell-data-binding-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/cell-data-binding-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/cell-data-binding-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/cell-data-binding-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/cell-data-binding-cs1" %}
> The cell data binding also supports formula, style, number format, and more.
@@ -143,15 +143,15 @@ The following table defines the arguments of the `dataSourceChanged` event.
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/dynamic-data-binding-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/dynamic-data-binding-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/dynamic-data-binding-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/dynamic-data-binding-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/dynamic-data-binding-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/dynamic-data-binding-cs1" %}
## Dynamic data binding using updateRange method
@@ -163,15 +163,15 @@ The following code example demonstrates how to dynamically update data using the
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/dynamic-data-binding-cs2/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/dynamic-data-binding-cs2/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/dynamic-data-binding-cs2/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/dynamic-data-binding-cs2/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/dynamic-data-binding-cs2" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/dynamic-data-binding-cs2" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/editing.md b/Document-Processing/Excel/Spreadsheet/Angular/editing.md
index 6097e5cf6..e510bad2a 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/editing.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/editing.md
@@ -40,15 +40,15 @@ The following sample shows how to prevent the editing and cell save. Here `E` co
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/editing-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/editing-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/editing-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/editing-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/editing-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/editing-cs1" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/filter.md b/Document-Processing/Excel/Spreadsheet/Angular/filter.md
index a83bd1cfb..d13ebdf21 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/filter.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/filter.md
@@ -37,15 +37,15 @@ The following code example shows `filter` functionality in the Spreadsheet contr
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/filter-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/filter-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/filter-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/filter-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/filter-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/filter-cs1" %}
## Filter by cell value
@@ -87,15 +87,15 @@ The following code example shows how to get the filtered rows.
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/filter-cs2/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/filter-cs2/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/filter-cs2/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/filter-cs2/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/filter-cs2" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/filter-cs2" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/formatting.md b/Document-Processing/Excel/Spreadsheet/Angular/formatting.md
index f18f96eaf..ce6fce8f8 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/formatting.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/formatting.md
@@ -90,15 +90,15 @@ The following code example shows the number formatting in cell data.
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/format/number-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/format/number-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/format/number-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/format/number-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/format/number-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/format/number-cs1" %}
## Configure culture-based custom format
@@ -145,15 +145,15 @@ The following code example demonstrates how to configure culture-based formats f
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/format/globalization-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/format/globalization-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/format/globalization-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/format/globalization-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/format/globalization-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/format/globalization-cs1" %}
## Text and cell formatting
@@ -216,15 +216,15 @@ The following code example shows the style formatting in text and cells of the s
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/format/number-cs2/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/format/number-cs2/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/format/number-cs2/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/format/number-cs2/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/format/number-cs2" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/format/number-cs2" %}
### Limitations of Formatting
@@ -314,15 +314,15 @@ You can clear the defined rules by using one of the following ways,
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/conditional-formatting-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/conditional-formatting-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/conditional-formatting-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/conditional-formatting-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/conditional-formatting-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/conditional-formatting-cs1" %}
### Limitations of Conditional formatting
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/formulas.md b/Document-Processing/Excel/Spreadsheet/Angular/formulas.md
index 23ccd18f5..f0f98ebd6 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/formulas.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/formulas.md
@@ -32,15 +32,15 @@ In the example below, the Spreadsheet component is rendered with the `German cul
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/formula-cs3/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/formula-cs3/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/formula-cs3/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/formula-cs3/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/formula-cs3" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/formula-cs3" %}
## Create User Defined Functions / Custom Functions
@@ -52,15 +52,15 @@ The following code example shows an unsupported formula in the spreadsheet.
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/formula-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/formula-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/formula-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/formula-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/formula-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/formula-cs1" %}
Second, if you want to directly compute any formula or expression, you can use the [computeExpression](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/#computeexpression) method. This method will work for both built-in and used-defined/custom formula.
@@ -68,15 +68,15 @@ The following code example shows how to use `computeExpression` method in the sp
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/formula-cs2/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/formula-cs2/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/formula-cs2/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/formula-cs2/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/formula-cs2" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/formula-cs2" %}
## Formula bar
@@ -95,15 +95,15 @@ The following code example shows the usage of named ranges support.
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/defined-name-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/defined-name-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/defined-name-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/defined-name-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/defined-name-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/defined-name-cs1" %}
## Calculation Mode
@@ -124,15 +124,15 @@ The following code example demonstrates how to set the Automatic calculation mod
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/calculation-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/calculation-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/calculation-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/calculation-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/calculation-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/calculation-cs1" %}
### Manual Mode
@@ -147,15 +147,15 @@ The following code example demonstrates how to set the Manual calculation mode i
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/calculation-cs2/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/calculation-cs2/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/calculation-cs2/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/calculation-cs2/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/calculation-cs2" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/calculation-cs2" %}
## Supported Formulas
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/freeze-pane.md b/Document-Processing/Excel/Spreadsheet/Angular/freeze-pane.md
index 78822833f..a23f14035 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/freeze-pane.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/freeze-pane.md
@@ -46,15 +46,15 @@ In this demo, the frozenColumns is set as ‘2’, and the frozenRows is set as
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/freezepane-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/freezepane-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/freezepane-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/freezepane-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/freezepane-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/freezepane-cs1" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/getting-started.md b/Document-Processing/Excel/Spreadsheet/Angular/getting-started.md
index 9dcb4d143..cbb25b052 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/getting-started.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/getting-started.md
@@ -157,15 +157,15 @@ The following example shows a basic Spreadsheet component
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/spreadsheet-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/spreadsheet-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/spreadsheet-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/spreadsheet-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/spreadsheet-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/spreadsheet-cs1" %}
> You can refer to our [Angular Spreadsheet](https://www.syncfusion.com/spreadsheet-editor-sdk/angular-spreadsheet-editor) feature tour page for its groundbreaking feature representations. You can also explore our [Angular Spreadsheet example](https://document.syncfusion.com/demos/spreadsheet-editor/angular/#/bootstrap5/spreadsheet/default) that shows you how present and manipulate data, including editing, formulas, formatting, importing, and exporting.
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/global-local.md b/Document-Processing/Excel/Spreadsheet/Angular/global-local.md
index 6cf370873..e9761547b 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/global-local.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/global-local.md
@@ -382,15 +382,15 @@ The following example demonstrates the Spreadsheet in `French` culture. In the b
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/local-data-binding-cs2/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/local-data-binding-cs2/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/local-data-binding-cs2/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/local-data-binding-cs2/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/local-data-binding-cs2" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/local-data-binding-cs2" %}
## Internationalization
@@ -411,15 +411,15 @@ The following example demonstrates the Spreadsheet in French [ `fr-CH`] culture.
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/internationalization-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/internationalization-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/internationalization-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/internationalization-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/internationalization-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/internationalization-cs1" %}
## Right to left (RTL)
@@ -427,15 +427,15 @@ RTL provides an option to switch the text direction and layout of the Spreadshee
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/local-data-binding-cs3/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/local-data-binding-cs3/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/local-data-binding-cs3/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/local-data-binding-cs3/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/local-data-binding-cs3" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/local-data-binding-cs3" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/how-to/change-active-sheet.md b/Document-Processing/Excel/Spreadsheet/Angular/how-to/change-active-sheet.md
index 0280dad9d..f4fa2020f 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/how-to/change-active-sheet.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/how-to/change-active-sheet.md
@@ -15,12 +15,12 @@ The following code example shows how to set the active sheet when importing an E
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/change-active-sheet-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/change-active-sheet-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/change-active-sheet-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/change-active-sheet-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/change-active-sheet-cs1" %}
\ No newline at end of file
+{% previewsample "/document-processing/samples/spreadsheet/angular/change-active-sheet-cs1" %}
\ No newline at end of file
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/how-to/identify-the-context-menu-opened.md b/Document-Processing/Excel/Spreadsheet/Angular/how-to/identify-the-context-menu-opened.md
index 80f32b251..5cdae0d47 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/how-to/identify-the-context-menu-opened.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/how-to/identify-the-context-menu-opened.md
@@ -24,12 +24,12 @@ The following code example shows how to identify the context menu opened.
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/contextmenu-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/contextmenu-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/contextmenu-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/contextmenu-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/contextmenu-cs1" %}
\ No newline at end of file
+{% previewsample "/document-processing/samples/spreadsheet/angular/contextmenu-cs1" %}
\ No newline at end of file
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/illustrations.md b/Document-Processing/Excel/Spreadsheet/Angular/illustrations.md
index 48dfc7f8b..53779e22b 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/illustrations.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/illustrations.md
@@ -70,15 +70,15 @@ Image feature allows you to view and insert an image in a spreadsheet, and you c
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/image-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/image-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/image-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/image-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/image-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/image-cs1" %}
### Limitations of Image
@@ -128,15 +128,15 @@ The available arguments in the `ChartModel` are:
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/chart-cs2/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/chart-cs2/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/chart-cs2/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/chart-cs2/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/chart-cs2" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/chart-cs2" %}
### Delete Chart
@@ -159,15 +159,15 @@ Chart feature allows you to view and insert a chart in a spreadsheet, and you ca
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/chart-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/chart-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/chart-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/chart-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/chart-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/chart-cs1" %}
#### Customization of line chart markers
@@ -175,15 +175,15 @@ Using the [`actionBegin`](https://ej2.syncfusion.com/angular/documentation/api/s
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/chart-cs3/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/chart-cs3/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/chart-cs3/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/chart-cs3/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/chart-cs3" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/chart-cs3" %}
### Limitations of Chart
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/link.md b/Document-Processing/Excel/Spreadsheet/Angular/link.md
index 8a53bdb1f..bced2e410 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/link.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/link.md
@@ -53,15 +53,15 @@ There is an event named `beforeHyperlinkClick` which triggers only on clicking h
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/link-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/link-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/link-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/link-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/link-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/link-cs1" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/notes.md b/Document-Processing/Excel/Spreadsheet/Angular/notes.md
index f5b912acd..b4e41103b 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/notes.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/notes.md
@@ -19,15 +19,15 @@ In the below example, you can add, edit, save, and delete notes.
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/note-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/note-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/note-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/note-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/note-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/note-cs1" %}
## Adding a note
@@ -72,15 +72,15 @@ In the below example, the note functionality is disabled in the Spreadsheet.
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/note-cs2/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/note-cs2/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/note-cs2/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/note-cs2/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/note-cs2" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/note-cs2" %}
## Integrating notes during initial loading and using cell data binding
@@ -88,15 +88,15 @@ The notes can be added initially when the Spreadsheet loads using cell data bind
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/note-cs3/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/note-cs3/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/note-cs3/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/note-cs3/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/note-cs3" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/note-cs3" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/open-save.md b/Document-Processing/Excel/Spreadsheet/Angular/open-save.md
index 814febbf6..82363caf3 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/open-save.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/open-save.md
@@ -23,15 +23,15 @@ The following sample shows the `Open` option by using the [`openUrl`](https://ej
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/open-save-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/open-save-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/open-save-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/open-save-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/open-save-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/open-save-cs1" %}
Please find the below table for the beforeOpen event arguments.
@@ -52,15 +52,15 @@ The following code example shows how to import an excel document using file uplo
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/open-save-cs7/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/open-save-cs7/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/open-save-cs7/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/open-save-cs7/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/open-save-cs7" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/open-save-cs7" %}
### Open an external URL excel file while initial load
@@ -68,15 +68,15 @@ You can achieve to access the remote excel file by using the [`created`](https:/
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/open-save-cs2/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/open-save-cs2/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/open-save-cs2/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/open-save-cs2/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/open-save-cs2" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/open-save-cs2" %}
### Open an excel file from blob data
@@ -86,15 +86,15 @@ Please find the code to fetch the blob data and load it into the Spreadsheet com
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/open-from-blobdata-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/open-from-blobdata-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/open-from-blobdata-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/open-from-blobdata-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/open-from-blobdata-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/open-from-blobdata-cs1" %}
### Open an Excel file located on a server
@@ -261,15 +261,15 @@ The following code example shows how to open the spreadsheet data as base64 stri
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/base-64-string/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/base-64-string/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/base-64-string/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/base-64-string/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/base-64-string" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/base-64-string" %}
### Open excel file into a read-only mode
@@ -277,15 +277,15 @@ You can open excel file into a read-only mode by using the [`openComplete`](http
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/open-save-cs12/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/open-save-cs12/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/open-save-cs12/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/open-save-cs12/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/open-save-cs12" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/open-save-cs12" %}
@@ -318,15 +318,15 @@ The following code snippet demonstrates how to configure the deserialization opt
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/open-from-json/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/open-from-json/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/open-from-json/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/open-from-json/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/open-from-json" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/open-from-json" %}
### Improving Excel file open performance with parsing options
@@ -437,15 +437,15 @@ You can add your own custom header to the open action in the Spreadsheet. For pr
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/open-save-cs8/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/open-save-cs8/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/open-save-cs8/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/open-save-cs8/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/open-save-cs8" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/open-save-cs8" %}
### External workbook confirmation dialog
@@ -477,15 +477,15 @@ The following sample shows the `Save` option by using the [`saveUrl`](https://ej
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/open-save-cs3/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/open-save-cs3/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/open-save-cs3/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/open-save-cs3/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/open-save-cs3" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/open-save-cs3" %}
Please find the below table for the beforeSave event arguments.
@@ -511,15 +511,15 @@ Please find below the code to retrieve blob data from the Spreadsheet component
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/save-as-blobdata-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/save-as-blobdata-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/save-as-blobdata-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/save-as-blobdata-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/save-as-blobdata-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/save-as-blobdata-cs1" %}
### Save an Excel file to a server
@@ -700,15 +700,15 @@ The following code example shows how to save the spreadsheet data as base64 stri
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/base-64-string/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/base-64-string/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/base-64-string/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/base-64-string/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/base-64-string" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/base-64-string" %}
### Configure JSON serialization options
@@ -738,15 +738,15 @@ The following code snippet demonstrates how to configure the serialization optio
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/save-as-json/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/save-as-json/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/save-as-json/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/save-as-json/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/save-as-json" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/save-as-json" %}
### Send and receive custom params from client to server
@@ -754,15 +754,15 @@ Passing the custom parameters from client to server by using [`beforeSave`](http
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/open-save-cs4/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/open-save-cs4/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/open-save-cs4/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/open-save-cs4/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/open-save-cs4" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/open-save-cs4" %}
Server side code snippets:
@@ -781,15 +781,15 @@ You can add your own custom header to the save action in the Spreadsheet. For pr
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/open-save-cs11/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/open-save-cs11/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/open-save-cs11/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/open-save-cs11/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/open-save-cs11" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/open-save-cs11" %}
### Change the PDF orientation
@@ -802,15 +802,15 @@ The possible values are:
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/open-save-cs6/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/open-save-cs6/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/open-save-cs6/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/open-save-cs6/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/open-save-cs6" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/open-save-cs6" %}
@@ -821,15 +821,15 @@ To save the Spreadsheet document as an `xlsx, xls, csv, or pdf` file, by using [
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/open-save-cs5/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/open-save-cs5/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/open-save-cs5/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/open-save-cs5/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/open-save-cs5" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/open-save-cs5" %}
## Server Configuration
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/print.md b/Document-Processing/Excel/Spreadsheet/Angular/print.md
index 64343aa6b..7968c9b06 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/print.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/print.md
@@ -31,15 +31,15 @@ The `printOptions` contain three properties, as described below.
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/print-cs2/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/print-cs2/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/print-cs2/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/print-cs2/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/print-cs2" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/print-cs2" %}
## Disable printing
@@ -49,15 +49,15 @@ The printing functionality in the Spreadsheet can be disabled by setting the [`a
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/print-cs3/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/print-cs3/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/print-cs3/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/print-cs3/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/print-cs3" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/print-cs3" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/protect-sheet.md b/Document-Processing/Excel/Spreadsheet/Angular/protect-sheet.md
index b421880d6..80d36a7e9 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/protect-sheet.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/protect-sheet.md
@@ -46,15 +46,15 @@ The following example shows `Protect Sheet` functionality with password in the S
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/protect-sheet-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/protect-sheet-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/protect-sheet-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/protect-sheet-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/protect-sheet-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/protect-sheet-cs1" %}
### Limitations of Protect sheet
@@ -78,15 +78,15 @@ In protected spreadsheet, to make some particular cell or range of cells are edi
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/lock-cells-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/lock-cells-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/lock-cells-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/lock-cells-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/lock-cells-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/lock-cells-cs1" %}
## Make cells read-only without protecting worksheet
@@ -142,15 +142,15 @@ The following example demonstrates how to make rows, columns, and cells read-onl
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/readonly-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/readonly-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/readonly-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/readonly-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/readonly-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/readonly-cs1" %}
## Protect Workbook
@@ -168,29 +168,29 @@ The following example shows `Protect Workbook` by using the [`isProtected`](http
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/local-data-binding-cs4/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/local-data-binding-cs4/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/local-data-binding-cs4/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/local-data-binding-cs4/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/local-data-binding-cs4" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/local-data-binding-cs4" %}
The following example shows `Protect Workbook` by using the [`password`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/#password) property in the Spreadsheet control. To unprotect the workbook, click the unprotect workbook button in the data tab and provide the password as syncfusion® in the dialog box.
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/local-data-binding-cs5/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/local-data-binding-cs5/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/local-data-binding-cs5/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/local-data-binding-cs5/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/local-data-binding-cs5" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/local-data-binding-cs5" %}
## Unprotect Workbook
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/ribbon.md b/Document-Processing/Excel/Spreadsheet/Angular/ribbon.md
index d3c8f2ade..df34b825a 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/ribbon.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/ribbon.md
@@ -31,15 +31,15 @@ The following code example shows the usage of ribbon customization.
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/ribbon/cutomization-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/ribbon/cutomization-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/ribbon/cutomization-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/ribbon/cutomization-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "page.domainurl/samples/excel/spreadsheet/angular/ribbon/cutomization-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/ribbon/cutomization-cs1" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/rows-and-columns.md b/Document-Processing/Excel/Spreadsheet/Angular/rows-and-columns.md
index 787f6adde..d6972d6c6 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/rows-and-columns.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/rows-and-columns.md
@@ -30,15 +30,15 @@ The following code example shows the options for inserting rows in the spreadshe
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/insert/row-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/insert/row-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/insert/row-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/insert/row-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/insert/row-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/insert/row-cs1" %}
### Column
@@ -51,15 +51,15 @@ The following code example shows the options for inserting columns in the spread
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/insert/column-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/insert/column-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/insert/column-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/insert/column-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/insert/column-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/insert/column-cs1" %}
## Delete
@@ -74,15 +74,15 @@ The following code example shows the delete operation of rows and columns in the
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/delete/row-column-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/delete/row-column-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/delete/row-column-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/delete/row-column-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/delete/row-column-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/delete/row-column-cs1" %}
## Limitations
@@ -117,15 +117,15 @@ The following code example shows the hide/show rows and columns operation in the
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/hide-show-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/hide-show-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/hide-show-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/hide-show-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/hide-show-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/hide-show-cs1" %}
## Changing text in column headers
@@ -135,15 +135,15 @@ The following code example shows how to change the text in the column headers.
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/column-header-change-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/column-header-change-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/column-header-change-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/column-header-change-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/column-header-change-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/column-header-change-cs1" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/scrolling.md b/Document-Processing/Excel/Spreadsheet/Angular/scrolling.md
index 546f02c55..3f96267b8 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/scrolling.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/scrolling.md
@@ -52,15 +52,15 @@ The following code example shows the finite scrolling with defined rows and colu
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/scrolling-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/scrolling-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/scrolling-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/scrolling-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/scrolling-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/scrolling-cs1" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/searching.md b/Document-Processing/Excel/Spreadsheet/Angular/searching.md
index a3938bb7b..31387aa65 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/searching.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/searching.md
@@ -64,15 +64,15 @@ In the following sample, searching can be done by following ways:
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/searching-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/searching-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/searching-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/searching-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/searching-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/searching-cs1" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/selection.md b/Document-Processing/Excel/Spreadsheet/Angular/selection.md
index 3caacd6a4..56d8e6039 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/selection.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/selection.md
@@ -48,15 +48,15 @@ The following sample shows the row selection in the spreadsheet, here selecting
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/selection-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/selection-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/selection-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/selection-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/selection-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/selection-cs1" %}
## Column selection
@@ -75,15 +75,15 @@ The following sample shows the column selection in the spreadsheet, here selecti
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/selection-cs2/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/selection-cs2/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/selection-cs2/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/selection-cs2/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/selection-cs2" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/selection-cs2" %}
## Get selected cell values
@@ -91,15 +91,15 @@ You can select single or multiple cells, rows, or columns using mouse and keyboa
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/selected-cell-values/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/selected-cell-values/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/selected-cell-values/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/selected-cell-values/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/selected-cell-values" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/selected-cell-values" %}
## Remove Selection
@@ -107,15 +107,15 @@ The following sample shows, how to remove the selection in the spreadsheet. Here
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/selection-cs3/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/selection-cs3/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/selection-cs3/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/selection-cs3/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/selection-cs3" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/selection-cs3" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/sort.md b/Document-Processing/Excel/Spreadsheet/Angular/sort.md
index 2bffacf52..34fef93f8 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/sort.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/sort.md
@@ -37,15 +37,15 @@ The following code example shows `sort` functionality in the Spreadsheet control
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/sort-by-cell-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/sort-by-cell-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/sort-by-cell-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/sort-by-cell-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/sort-by-cell-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/sort-by-cell-cs1" %}
## Data contains header
@@ -113,15 +113,15 @@ The multi-column sorting can also be performed manually by passing sort options
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/passing-sort-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/passing-sort-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/passing-sort-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/passing-sort-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/passing-sort-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/passing-sort-cs1" %}
## Custom sort comparer
@@ -141,15 +141,15 @@ In the following demo, the `Trustworthiness` column is sorted based on the custo
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/custom-sort-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/custom-sort-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/custom-sort-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/custom-sort-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/custom-sort-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/custom-sort-cs1" %}
## Known error validations
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/template.md b/Document-Processing/Excel/Spreadsheet/Angular/template.md
index e38837768..5bb435bb5 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/template.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/template.md
@@ -17,15 +17,15 @@ Sample link: [`Cell template`](https://document.syncfusion.com/demos/spreadsheet
+{% previewsample "/document-processing/samples/spreadsheet/angular/template-cs1" %} -->
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/undo-redo.md b/Document-Processing/Excel/Spreadsheet/Angular/undo-redo.md
index 0e3774d5c..6298c0b11 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/undo-redo.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/undo-redo.md
@@ -39,15 +39,15 @@ The following code example shows `How to update and customize your own actions f
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/undo-redo-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/undo-redo-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/undo-redo-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/undo-redo-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/undo-redo-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/undo-redo-cs1" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/worksheet.md b/Document-Processing/Excel/Spreadsheet/Angular/worksheet.md
index 5de498508..1e7cfc59d 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/worksheet.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/worksheet.md
@@ -23,15 +23,15 @@ The following code example shows the insert sheet operation in spreadsheet.
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/insert/sheet-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/insert/sheet-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/insert/sheet-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/insert/sheet-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/insert/sheet-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/insert/sheet-cs1" %}
### Insert a sheet programmatically and make it active sheet
@@ -41,15 +41,15 @@ The following code example shows how to insert a sheet programmatically and make
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/insert-sheet-change-active-sheet-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/insert-sheet-change-active-sheet-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/insert-sheet-change-active-sheet-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/insert-sheet-change-active-sheet-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/insert-sheet-change-active-sheet-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/insert-sheet-change-active-sheet-cs1" %}
## Delete sheet
@@ -82,15 +82,15 @@ The following code example shows the headers and gridlines operation in spreadsh
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/headers-gridlines-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/headers-gridlines-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/headers-gridlines-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/headers-gridlines-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/headers-gridlines-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/headers-gridlines-cs1" %}
## Sheet visibility
@@ -108,15 +108,15 @@ The following code example shows the three types of sheet visibility state.
{% tabs %}
{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/sheet-visibility-cs1/src/app.component.ts %}
+{% include code-snippet/spreadsheet/angular/sheet-visibility-cs1/src/app.component.ts %}
{% endhighlight %}
{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/excel/spreadsheet/angular/sheet-visibility-cs1/src/main.ts %}
+{% include code-snippet/spreadsheet/angular/sheet-visibility-cs1/src/main.ts %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/sheet-visibility-cs1" %}
+{% previewsample "/document-processing/samples/spreadsheet/angular/sheet-visibility-cs1" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/Blazor/rows-and-columns.md b/Document-Processing/Excel/Spreadsheet/Blazor/rows-and-columns.md
index 068d77351..8b951d69d 100644
--- a/Document-Processing/Excel/Spreadsheet/Blazor/rows-and-columns.md
+++ b/Document-Processing/Excel/Spreadsheet/Blazor/rows-and-columns.md
@@ -20,15 +20,10 @@ You can insert rows or columns anywhere in a spreadsheet.
### Row
-The rows can be inserted in the following ways:
+The rows can be inserted in the following ways,
-**Using the context menu**
-
- Insert rows in the desired position by right-clicking on a row header.
-
-**Using `InsertRowAsync` method**
-
-Using [`InsertRowAsync`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Spreadsheet.SfSpreadsheet.html#Syncfusion_Blazor_Spreadsheet_SfSpreadsheet_InsertRowAsync_System_Int32_System_Int32_System_Object_Syncfusion_Blazor_Spreadsheet_RowPosition_) method, you can insert the rows once the component is loaded.
+* Using [`InsertRowAsync`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Spreadsheet.SfSpreadsheet.html#Syncfusion_Blazor_Spreadsheet_SfSpreadsheet_InsertRowAsync_System_Int32_System_Int32_System_Object_Syncfusion_Blazor_Spreadsheet_RowPosition_) method, you can insert the rows once the component is loaded.
+* Using context menu, insert the rows in the desired position.
The following code example shows the options for inserting rows in the spreadsheet.
@@ -74,15 +69,10 @@ The following code example shows the options for inserting rows in the spreadshe
### Column
-The columns can be inserted in the following ways:
-
-**Using the context menu**
-
-Insert columns in the desired position by right-clicking on a column header.
-
-**Using `InsertColumnAsync` method**
+The columns can be inserted in the following ways,
-Using [`InsertColumnAsync`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Spreadsheet.SfSpreadsheet.html#Syncfusion_Blazor_Spreadsheet_SfSpreadsheet_InsertColumnAsync_System_Int32_System_Int32_System_Object_Syncfusion_Blazor_Spreadsheet_ColumnPosition_) method, you can insert the columns once the component is loaded.
+* Using [`InsertColumnAsync`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Spreadsheet.SfSpreadsheet.html#Syncfusion_Blazor_Spreadsheet_SfSpreadsheet_InsertColumnAsync_System_Int32_System_Int32_System_Object_Syncfusion_Blazor_Spreadsheet_ColumnPosition_) method, you can insert the columns once the component is loaded.
+* Using context menu, insert the columns in the desired position.
The following code example shows the options for inserting columns in the spreadsheet.
@@ -133,16 +123,16 @@ The Blazor Spreadsheet component enables you to define the initial number of row
* The default `RowCount` is **1000**.
* The default `ColumnCount` is **200**.
-**Rendering Behavior**
+### Rendering Behavior
- **Without Data Source:**
- - When no data is bound to the spreadsheet, the sheet renders empty cells up to RowCount × ColCount.
+ - When no data is bound to the spreadsheet, the sheet renders empty cells up to the specified row and column counts.
- **With Data Source (e.g., byte array or imported file):**
- - If the data source has fewer rows/columns than RowCount/ColCount, the spreadsheet renders additional empty rows/columns to meet the specified counts.
- - If the data source has more rows/columns than RowCount/ColCount, the spreadsheet renders enough rows/columns to display all data from the source (i.e., it extends beyond the specified counts to fit the data). Your data is never truncated by these properties.
+ - If the data source contains fewer rows and columns than the specified row and column counts, the spreadsheet renders additional empty rows and columns to meet those counts.
+ - If the data source contains more rows and columns than the specified row and column counts, the spreadsheet renders enough rows and columns to display all the data (i.e., it extends beyond those counts to fit the data). Your data is never truncated by these properties.
You can set these properties as follows:
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/cell-range.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/cell-range.md
index da76fd46f..b3b91ff2e 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/cell-range.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/cell-range.md
@@ -26,14 +26,14 @@ The following code example shows the wrap text functionality in spreadsheet.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/wrap-text-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/wrap-text-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/wrap-text-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/wrap-text-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/wrap-text-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/wrap-text-cs1" %}
### Limitations of Wrap text
@@ -65,14 +65,14 @@ The following code example shows the merge cells operation in spreadsheet.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/merge-cells-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/merge-cells-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/merge-cells-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/merge-cells-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/merge-cells-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/merge-cells-cs1" %}
### Limitations of Merge
@@ -124,14 +124,14 @@ You can clear the highlighted invalid data by using the following ways,
* Use the [`removeInvalidHighlight()`](https://ej2.syncfusion.com/javascript/documentation/api/spreadsheet/#removeinvalidhighlight) method programmatically.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/data-validation-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/data-validation-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/data-validation-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/data-validation-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/data-validation-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/data-validation-cs1" %}
### Custom Data validation
@@ -152,14 +152,14 @@ The following code example demonstrates how to add custom data validation with a
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/data-validation-cs3/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/data-validation-cs3/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/data-validation-cs3/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/data-validation-cs3/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/data-validation-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/data-validation-cs3" %}
### Limitations of Data validation
@@ -235,14 +235,14 @@ In the following sample, you can enable/disable the fill option on the button cl
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/autofill-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/autofill-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/autofill-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/autofill-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/autofill-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/autofill-cs1" %}
### Limitations of Autofill
@@ -277,14 +277,14 @@ Clear the cell contents and formats in the Spreadsheet document by using the [cl
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/clear-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/clear-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/clear-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/clear-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/clear-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/clear-cs1" %}
## See Also
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/clipboard.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/clipboard.md
index cd70c55a2..afd28cdee 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/clipboard.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/clipboard.md
@@ -64,14 +64,14 @@ Paste can be done in one of the following ways.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/clipboard-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/clipboard-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/clipboard-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/clipboard-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/clipboard-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/clipboard-cs1" %}
## Prevent the paste functionality
@@ -80,14 +80,14 @@ The following example shows, how to prevent the paste action in spreadsheet. In
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/clipboard-cs2/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/clipboard-cs2/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/clipboard-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/clipboard-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/clipboard-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/clipboard-cs2" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/context-menu.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/context-menu.md
index 45e9273e3..9653ba8f2 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/context-menu.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/context-menu.md
@@ -70,14 +70,14 @@ In this demo, Custom Item is added after the Paste item in the context menu.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/contextmenu/addContextMenu-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/contextmenu/addContextMenu-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/contextmenu/addContextMenu-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/contextmenu/addContextMenu-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/contextmenu/addContextMenu-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/contextmenu/addContextMenu-cs1" %}
### Remove Context Menu Items
@@ -87,14 +87,14 @@ In this demo, Insert Column item has been removed from the row/column header con
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/contextmenu/removeContextMenu-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/contextmenu/removeContextMenu-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/contextmenu/removeContextMenu-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/contextmenu/removeContextMenu-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/contextmenu/removeContextMenu-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/contextmenu/removeContextMenu-cs1" %}
### Enable/Disable Context Menu Items
@@ -104,14 +104,14 @@ In this demo, Rename item is disabled in the pager context menu.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/contextmenu/enableContextMenuItems-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/contextmenu/enableContextMenuItems-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/contextmenu/enableContextMenuItems-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/contextmenu/enableContextMenuItems-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/contextmenu/enableContextMenuItems-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/contextmenu/enableContextMenuItems-cs1" %}
## See Also
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/data-binding.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/data-binding.md
index 526b48e26..0f7e5d038 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/data-binding.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/data-binding.md
@@ -21,14 +21,14 @@ Refer to the following code example for local data binding.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/data-binding-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/data-binding-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/data-binding-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/data-binding-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/data-binding-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/data-binding-cs1" %}
> The local data source can also be provided as an instance of the [`DataManager`](https://helpej2.syncfusion.com/javascript/documentation/data/). By default, [`DataManager`](https://helpej2.syncfusion.com/javascript/documentation/data/) uses [`JsonAdaptor`](https://ej2.syncfusion.com/javascript/documentation/data/adaptors#json-adaptor) for local data-binding.
@@ -42,14 +42,14 @@ The following code example demonstrates how to customize the mapping of column d
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/field-mapping-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/field-mapping-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/field-mapping-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/field-mapping-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/field-mapping-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/field-mapping-cs1" %}
## Remote data
@@ -59,14 +59,14 @@ Refer to the following code example for remote data binding.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/data-binding-cs2/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/data-binding-cs2/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/data-binding-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/data-binding-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/data-binding-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/data-binding-cs2" %}
> By default, `DataManager` uses **ODataAdaptor** for remote data-binding.
@@ -76,14 +76,14 @@ Refer to the following code example for remote data binding.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/data-binding-cs3/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/data-binding-cs3/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/data-binding-cs3/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/data-binding-cs3/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/data-binding-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/data-binding-cs3" %}
### Web API
@@ -91,14 +91,14 @@ You can use WebApiAdaptor to bind spreadsheet with Web API created using OData e
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/data-binding-cs4/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/data-binding-cs4/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/data-binding-cs4/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/data-binding-cs4/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/data-binding-cs4" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/data-binding-cs4" %}
## Cell data binding
@@ -109,14 +109,14 @@ Refer to the following code example for cell data binding.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/data-binding-cs5/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/data-binding-cs5/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/data-binding-cs5/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/data-binding-cs5/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/data-binding-cs5" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/data-binding-cs5" %}
> The cell data binding also supports formula, style, number format, and more.
@@ -138,14 +138,14 @@ The following table defines the arguments of the `dataSourceChanged` event.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/dynamic-data-binding-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/dynamic-data-binding-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/dynamic-data-binding-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/dynamic-data-binding-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/dynamic-data-binding-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/dynamic-data-binding-cs1" %}
## Dynamic data binding using updateRange method
@@ -157,14 +157,14 @@ The following code example demonstrates how to dynamically update data using the
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/dynamic-data-binding-cs2/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/dynamic-data-binding-cs2/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/dynamic-data-binding-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/dynamic-data-binding-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/dynamic-data-binding-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/dynamic-data-binding-cs2" %}
## See Also
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/data-validation.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/data-validation.md
index 901aa28d0..bf845cb1c 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/data-validation.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/data-validation.md
@@ -51,14 +51,14 @@ You can clear the highlighted invalid data by using the following ways,
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/data-validation-cs2/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/data-validation-cs2/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/data-validation-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/data-validation-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/data-validation-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/data-validation-cs2" %}
## See Also
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/editing.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/editing.md
index a7dec651a..1f247d85a 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/editing.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/editing.md
@@ -45,14 +45,14 @@ The following sample shows how to prevent the editing and cell save. Here `E` co
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/editing-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/editing-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/editing-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/editing-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/editing-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/editing-cs1" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/filter.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/filter.md
index d0b462244..e6afe3de0 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/filter.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/filter.md
@@ -39,14 +39,14 @@ The following code example shows `filter` functionality in the Spreadsheet contr
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/filter-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/filter-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/filter-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/filter-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/filter-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/filter-cs1" %}
## Filter by cell value
@@ -89,14 +89,14 @@ The following code example shows how to get the filtered rows.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/filter-cs2/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/filter-cs2/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/filter-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/filter-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/filter-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/filter-cs2" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/formatting.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/formatting.md
index b954e960e..8d73209b7 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/formatting.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/formatting.md
@@ -94,14 +94,14 @@ The following code example shows the number formatting in cell data.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/format/number-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/format/number-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/format/number-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/format/number-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/format/number-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/format/number-cs1" %}
## Configure culture-based custom format
@@ -146,14 +146,14 @@ The following code example demonstrates how to configure culture-based formats f
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/format/globalization-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/format/globalization-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/format/globalization-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/format/globalization-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/format/globalization-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/format/globalization-cs1" %}
## Text and cell formatting
@@ -216,14 +216,14 @@ The following code example shows the style formatting in text and cells of the s
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/format/cell-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/format/cell-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/format/cell-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/format/cell-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/format/cell-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/format/cell-cs1" %}
### Limitations of Formatting
@@ -317,14 +317,14 @@ You can clear the defined rules by using one of the following ways,
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/conditional-formatting-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/conditional-formatting-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/conditional-formatting-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/conditional-formatting-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/conditional-formatting-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/conditional-formatting-cs1" %}
### Limitations of Conditional formatting
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/formulas.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/formulas.md
index b995831f0..9d9cea627 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/formulas.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/formulas.md
@@ -32,14 +32,14 @@ In the example below, the Spreadsheet component is rendered with the `German` [`
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/formula-cs3/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/formula-cs3/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/formula-cs3/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/formula-cs3/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/formula-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/formula-cs3" %}
## Create User Defined Functions / Custom Functions
@@ -51,14 +51,14 @@ The following code example shows an unsupported formula in the spreadsheet.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/formula-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/formula-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/formula-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/formula-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/formula-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/formula-cs1" %}
Second, if you want to directly compute any formula or expression, you can use the [computeExpression](https://ej2.syncfusion.com/javascript/documentation/api/spreadsheet/#computeexpression) method. This method will work for both built-in and used-defined/custom formula.
@@ -66,14 +66,14 @@ The following code example shows how to use `computeExpression` method in the sp
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/formula-cs2/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/formula-cs2/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/formula-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/formula-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/formula-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/formula-cs2" %}
## Formula bar
@@ -92,14 +92,14 @@ The following code example shows the usage of named ranges support.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/defined-name-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/defined-name-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/defined-name-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/defined-name-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/defined-name-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/defined-name-cs1" %}
## Calculation Mode
@@ -120,14 +120,14 @@ The following code example demonstrates how to set the Automatic calculation mod
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/calculation-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/calculation-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/calculation-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/calculation-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/calculation-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/calculation-cs1" %}
### Manual Mode
@@ -142,14 +142,14 @@ The following code example demonstrates how to set the Manual calculation mode i
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/calculation-cs2/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/calculation-cs2/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/calculation-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/calculation-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/calculation-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/calculation-cs2" %}
## Supported Formulas
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/freeze-pane.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/freeze-pane.md
index 3cfc02502..2947bd134 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/freeze-pane.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/freeze-pane.md
@@ -46,14 +46,14 @@ In this demo, the frozenColumns is set as ‘2’, and the frozenRows is set as
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/freezepane-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/freezepane-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/freezepane-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/freezepane-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/freezepane-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/freezepane-cs1" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/getting-started.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/getting-started.md
index 2893b38c6..9cb649663 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/getting-started.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/getting-started.md
@@ -266,14 +266,14 @@ Output will be displayed as follows.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/spreadsheet/es5-getting-started-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/spreadsheet/es5-getting-started-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/spreadsheet/es5-getting-started-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/spreadsheet/es5-getting-started-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/spreadsheet/es5-getting-started-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/spreadsheet/es5-getting-started-cs1" %}
> You can refer to our [JavaScript Spreadsheet](https://www.syncfusion.com/spreadsheet-editor-sdk/javascript-spreadsheet-editor) feature tour page for its groundbreaking feature representations. You can also explore our [JavaScript Spreadsheet example](https://document.syncfusion.com/demos/spreadsheet-editor/javascript-es5/#/tailwind3/spreadsheet/default.html) to knows how present and manipulate data, including editing, formulas, formatting, importing, and exporting.
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/global-local.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/global-local.md
index d464f3a69..233a5791f 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/global-local.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/global-local.md
@@ -383,14 +383,14 @@ The following example demonstrates the Spreadsheet in `French` culture. In the b
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/global/locale-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/global/locale-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/global/locale-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/global/locale-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/global/locale-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/global/locale-cs1" %}
## Internationalization
@@ -400,14 +400,14 @@ The following example demonstrates the Spreadsheet in French [`fr-CH`] culture.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/global/internationalization-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/global/internationalization-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/global/internationalization-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/global/internationalization-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/global/internationalization-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/global/internationalization-cs1" %}
## Right to left (RTL)
@@ -415,14 +415,14 @@ RTL provides an option to switch the text direction and layout of the Spreadshee
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/global/rtl-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/global/rtl-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/global/rtl-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/global/rtl-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/global/rtl-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/global/rtl-cs1" %}
## See Also
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/how-to/change-active-sheet.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/how-to/change-active-sheet.md
index 319fa9a84..bd74c5987 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/how-to/change-active-sheet.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/how-to/change-active-sheet.md
@@ -16,11 +16,11 @@ The following code example shows how to set the active sheet when importing an E
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/change-active-sheet-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/change-active-sheet-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/change-active-sheet-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/change-active-sheet-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/change-active-sheet-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/change-active-sheet-cs1" %}
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/how-to/create-a-object-structure.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/how-to/create-a-object-structure.md
index 023fb118f..a492de01d 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/how-to/create-a-object-structure.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/how-to/create-a-object-structure.md
@@ -171,11 +171,11 @@ In the following demo, the JSON structure is passed to the `openFromJson` method
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/json-structure-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/json-structure-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/json-structure-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/json-structure-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/json-structure-cs1" %}
\ No newline at end of file
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/json-structure-cs1" %}
\ No newline at end of file
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/how-to/identify-the-context-menu-opened.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/how-to/identify-the-context-menu-opened.md
index 2083145f1..9bb2037fb 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/how-to/identify-the-context-menu-opened.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/how-to/identify-the-context-menu-opened.md
@@ -24,11 +24,11 @@ The following code example shows how to identify the context menu opened.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/find-target-context-menu/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/find-target-context-menu/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/find-target-context-menu/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/find-target-context-menu/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/find-target-context-menu" %}
\ No newline at end of file
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/find-target-context-menu" %}
\ No newline at end of file
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/illustrations.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/illustrations.md
index b9a55f65d..c58632d23 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/illustrations.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/illustrations.md
@@ -70,14 +70,14 @@ Image feature allows you to view and insert an image in a spreadsheet, and you c
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/image-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/image-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/image-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/image-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/image-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/image-cs1" %}
### Limitations of Image
@@ -128,14 +128,14 @@ The available arguments in the `ChartModel` are:
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/chart-cs2/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/chart-cs2/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/chart-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/chart-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/chart-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/chart-cs2" %}
### Delete Chart
@@ -159,14 +159,14 @@ Chart feature allows you to view and insert a chart in a spreadsheet, and you ca
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/chart-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/chart-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/chart-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/chart-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/chart-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/chart-cs1" %}
#### Customization of line chart markers
@@ -174,14 +174,14 @@ Using the [`actionBegin`](https://ej2.syncfusion.com/javascript/documentation/ap
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/chart-cs3/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/chart-cs3/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/chart-cs3/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/chart-cs3/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/chart-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/chart-cs3" %}
### Limitations of Chart
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/link.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/link.md
index 843cbeeff..1bdd97201 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/link.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/link.md
@@ -56,14 +56,14 @@ There is an event named `beforeHyperlinkClick` which triggers only on clicking h
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/link-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/link-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/link-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/link-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/link-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/link-cs1" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/notes.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/notes.md
index e1f6c8126..9f4ac3852 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/notes.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/notes.md
@@ -19,14 +19,14 @@ In the below example, you can add, edit, save, and delete notes.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/note-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/note-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/note-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/note-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/note-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/note-cs1" %}
## Adding a note
@@ -71,14 +71,14 @@ In the below example, the note functionality is disabled in the Spreadsheet.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/note-cs2/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/note-cs2/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/note-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/note-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/note-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/note-cs2" %}
## Integrating notes during initial loading and using cell data binding
@@ -86,14 +86,14 @@ The notes can be added initially when the Spreadsheet loads using cell data bind
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/note-cs3/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/note-cs3/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/note-cs3/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/note-cs3/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/note-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/note-cs3" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/open-save.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/open-save.md
index 74deeee95..7b69bbb9d 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/open-save.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/open-save.md
@@ -23,14 +23,14 @@ The following sample shows the `Open` option by using the [`openUrl`](https://ej
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/open-save-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/open-save-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/open-save-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/open-save-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/open-save-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/open-save-cs1" %}
Please find the below table for the beforeOpen event arguments.
@@ -49,14 +49,14 @@ If you explore your machine to select and upload an excel document using the fil
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/import-using-uploader/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/import-using-uploader/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/import-using-uploader/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/import-using-uploader/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/import-using-uploader" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/import-using-uploader" %}
### Open an external URL excel file while initial load
@@ -64,14 +64,14 @@ You can achieve to access the remote excel file by using the [`created`](https:/
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/open-save-cs2/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/open-save-cs2/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/open-save-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/open-save-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/open-save-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/open-save-cs2" %}
### Open an excel file from blob data
@@ -81,14 +81,14 @@ Please find the code to fetch the blob data and load it into the Spreadsheet con
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/open-from-blobdata-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/open-from-blobdata-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/open-from-blobdata-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/open-from-blobdata-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/open-from-blobdata-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/open-from-blobdata-cs1" %}
### Open an Excel file located on a server
@@ -238,14 +238,14 @@ The following code example shows how to save the spreadsheet data as base64 stri
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/base-64-string/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/base-64-string/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/base-64-string/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/base-64-string/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/base-64-string" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/base-64-string" %}
### Open excel file into a read-only mode
@@ -253,14 +253,14 @@ You can open excel file into a read-only mode by using the [`openComplete`](http
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/open-save-cs4/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/open-save-cs4/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/open-save-cs4/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/open-save-cs4/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/open-save-cs4" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/open-save-cs4" %}
### Configure JSON deserialization options
@@ -290,14 +290,14 @@ The following code snippet demonstrates how to configure the deserialization opt
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/open-from-json/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/open-from-json/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/open-from-json/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/open-from-json/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/open-from-json" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/open-from-json" %}
### Improving Excel file open performance with parsing options
@@ -395,14 +395,14 @@ You can add your own custom header to the open action in the Spreadsheet. For pr
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/open-save-cs3/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/open-save-cs3/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/open-save-cs3/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/open-save-cs3/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/open-save-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/open-save-cs3" %}
### External workbook confirmation dialog
@@ -444,14 +444,14 @@ The following sample shows the `Save` option by using the [`saveUrl`](https://ej
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/open-save-cs5/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/open-save-cs5/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/open-save-cs5/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/open-save-cs5/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/open-save-cs5" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/open-save-cs5" %}
Please find the below table for the beforeSave event arguments.
@@ -478,14 +478,14 @@ Please find below the code to retrieve blob data from the Spreadsheet control be
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/save-as-blobdata-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/save-as-blobdata-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/save-as-blobdata-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/save-as-blobdata-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/save-as-blobdata-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/save-as-blobdata-cs1" %}
### Save an Excel file to a server
@@ -650,14 +650,14 @@ The following code example shows how to save the spreadsheet data as base64 stri
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/base-64-string/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/base-64-string/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/base-64-string/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/base-64-string/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/base-64-string" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/base-64-string" %}
### Configure JSON serialization options
@@ -687,14 +687,14 @@ The following code snippet demonstrates how to configure the serialization optio
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/save-as-json/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/save-as-json/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/save-as-json/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/save-as-json/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/save-as-json" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/save-as-json" %}
### Send and receive custom params from client to server
@@ -703,14 +703,14 @@ Passing the custom parameters from client to server by using [`beforeSave`](http
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/open-save-cs6/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/open-save-cs6/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/open-save-cs6/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/open-save-cs6/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/open-save-cs6" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/open-save-cs6" %}
Server side code snippets:
@@ -729,14 +729,14 @@ You can add your own custom header to the save action in the Spreadsheet. For pr
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/open-save-cs7/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/open-save-cs7/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/open-save-cs7/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/open-save-cs7/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/open-save-cs7" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/open-save-cs7" %}
### Change the PDF orientation
@@ -749,14 +749,14 @@ The possible values are:
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/open-save-cs8/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/open-save-cs8/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/open-save-cs8/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/open-save-cs8/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/open-save-cs8" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/open-save-cs8" %}
### Supported file formats
@@ -773,14 +773,14 @@ To save the Spreadsheet document as an `xlsx, xls, csv, or pdf` file, by using [
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/save-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/save-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/save-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/save-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/save-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/save-cs1" %}
## Server Configuration
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/open.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/open.md
index 16712f213..1ae17ba44 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/open.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/open.md
@@ -25,11 +25,11 @@ The following code example shows `Open` option in the Spreadsheet control.
{% tabs %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/open-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/open-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/open-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/open-cs1" %}
> * Use `Ctrl + O` keyboard shortcut to open Excel documents.
> * The default value of the [allowOpen](../api/spreadsheet/#allowopen) property is `true`. For demonstration purpose, we have showcased the [allowOpen](../api/spreadsheet/#allowopen) property in previous code snippet.
\ No newline at end of file
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/print.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/print.md
index b35394e64..e019d3a43 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/print.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/print.md
@@ -31,14 +31,14 @@ The `printOptions` contain three properties, as described below.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/print-cs2/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/print-cs2/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/print-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/print-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/print-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/print-cs2" %}
## Disable printing
@@ -48,14 +48,14 @@ The printing functionality in the Spreadsheet can be disabled by setting the [`a
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/print-cs3/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/print-cs3/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/print-cs3/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/print-cs3/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/print-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/print-cs3" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/protect-sheet.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/protect-sheet.md
index a81e752ff..c5b121eb6 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/protect-sheet.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/protect-sheet.md
@@ -49,14 +49,14 @@ The following example shows `Protect Sheet` functionality with password in the S
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/protect-sheet-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/protect-sheet-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/protect-sheet-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/protect-sheet-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/protect-sheet-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/protect-sheet-cs1" %}
### Limitations of Protect sheet
@@ -81,14 +81,14 @@ In protected spreadsheet, to make some particular cell or range of cells are edi
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/protect-sheet-cs2/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/protect-sheet-cs2/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/protect-sheet-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/protect-sheet-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/protect-sheet-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/protect-sheet-cs2" %}
## Make cells read-only without protecting worksheet
@@ -140,14 +140,14 @@ The following example demonstrates how to make rows, columns, and cells read-onl
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/readonly-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/readonly-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/readonly-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/readonly-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/readonly-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/readonly-cs1" %}
## Protect Workbook
@@ -167,27 +167,27 @@ The following example shows `Protect Workbook` by using the [`isProtected`](http
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/protect-workbook/default-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/protect-workbook/default-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/protect-workbook/default-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/protect-workbook/default-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/protect-workbook/default-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/protect-workbook/default-cs1" %}
The following example shows `Protect Workbook` by using the [`password`](https://ej2.syncfusion.com/javascript/documentation/api/spreadsheet/#password) property in the Spreadsheet control. To unprotect the workbook, click the unprotect workbook button in the data tab and provide the password as syncfusion® in the dialog box.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/protect-workbook/default-cs2/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/protect-workbook/default-cs2/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/protect-workbook/default-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/protect-workbook/default-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/protect-workbook/default-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/protect-workbook/default-cs2" %}
## Unprotect Workbook
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/ribbon.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/ribbon.md
index 8082c08b2..3b53cb484 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/ribbon.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/ribbon.md
@@ -31,14 +31,14 @@ The following code example shows the usage of ribbon customization.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/ribbon/cutomization-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/ribbon/cutomization-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/ribbon/cutomization-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/ribbon/cutomization-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/ribbon/cutomization-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/ribbon/cutomization-cs1" %}
## See Also
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/rows-and-columns.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/rows-and-columns.md
index 10e5ed0a7..aa44f2775 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/rows-and-columns.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/rows-and-columns.md
@@ -30,14 +30,14 @@ The following code example shows the options for inserting rows in the spreadshe
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/insert/row-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/insert/row-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/insert/row-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/insert/row-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/insert/row-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/insert/row-cs1" %}
### Column
@@ -50,14 +50,14 @@ The following code example shows the options for inserting columns in the spread
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/insert/column-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/insert/column-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/insert/column-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/insert/column-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/insert/column-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/insert/column-cs1" %}
## Delete
@@ -72,14 +72,14 @@ The following code example shows the delete operation of rows and columns in the
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/delete/row-column-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/delete/row-column-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/delete/row-column-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/delete/row-column-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/delete/row-column-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/delete/row-column-cs1" %}
## Limitations of insert and delete
@@ -114,14 +114,14 @@ The following code example shows the hide/show rows and columns operation in the
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/hide-show-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/hide-show-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/hide-show-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/hide-show-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/hide-show-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/hide-show-cs1" %}
## Size
@@ -142,14 +142,14 @@ The following code example shows how to change the height for single/multiple ro
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/row-height-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/row-height-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/row-height-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/row-height-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/row-height-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/row-height-cs1" %}
### Column
@@ -166,14 +166,14 @@ The following code example shows how to change the width for single/multiple col
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/column-width-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/column-width-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/column-width-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/column-width-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/column-width-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/column-width-cs1" %}
## Changing text in column headers
@@ -183,14 +183,14 @@ The following code example shows how to change the text in the column headers.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/column-header-change-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/column-header-change-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/column-header-change-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/column-header-change-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/column-header-change-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/column-header-change-cs1" %}
## See Also
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/save.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/save.md
index 45d88a5a2..ede189cf0 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/save.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/save.md
@@ -25,11 +25,11 @@ The following code example shows `Save` option in the Spreadsheet control.
{% tabs %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/save-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/save-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/save-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/save-cs2" %}
> * Use `Ctrl + S` keyboard shortcut to save the Spreadsheet data as Excel file.
> * The default value of [allowSave](../api/spreadsheet/#allowsave) property is `true`. For demonstration purpose, we have showcased the [allowSave](../api/spreadsheet/#allowsave) property in previous code snippet.
\ No newline at end of file
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/scrolling.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/scrolling.md
index e32f0e59e..1c9607305 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/scrolling.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/scrolling.md
@@ -52,11 +52,11 @@ The following code example shows the finite scrolling with defined rows and colu
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/scrolling-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/scrolling-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/scrolling-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/scrolling-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/scrolling-cs1" %}
\ No newline at end of file
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/scrolling-cs1" %}
\ No newline at end of file
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/searching.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/searching.md
index db842db49..7a055f1bc 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/searching.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/searching.md
@@ -64,14 +64,14 @@ In the following sample, searching can be done by following ways:
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/searching-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/searching-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/searching-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/searching-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/searching-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/searching-cs1" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/selection.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/selection.md
index b89763d65..e6ec4a77e 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/selection.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/selection.md
@@ -48,14 +48,14 @@ The following sample shows the row selection in the spreadsheet, here selecting
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/selection-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/selection-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/selection-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/selection-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/selection-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/selection-cs1" %}
## Column selection
@@ -74,14 +74,14 @@ The following sample shows the column selection in the spreadsheet, here selecti
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/selection-cs2/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/selection-cs2/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/selection-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/selection-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/selection-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/selection-cs2" %}
## Get selected cell values
@@ -91,14 +91,14 @@ Below is a code example demonstrating how to retrieve the selected cell values a
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/selected-cell-values/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/selected-cell-values/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/selected-cell-values/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/selected-cell-values/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/selected-cell-values" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/selected-cell-values" %}
## Remove Selection
@@ -106,14 +106,14 @@ The following sample shows, how to remove the selection in the spreadsheet. Here
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/selection-cs3/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/selection-cs3/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/selection-cs3/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/selection-cs3/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/selection-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/selection-cs3" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/sort.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/sort.md
index 8033d1f44..0a1f7b47d 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/sort.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/sort.md
@@ -37,14 +37,14 @@ The following code example shows `Sort` functionality in the Spreadsheet control
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/sort-cs2/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/sort-cs2/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/sort-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/sort-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/sort-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/sort-cs2" %}
## Data contains header
@@ -120,14 +120,14 @@ The multi-column sorting can also be performed manually by passing sort options
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/sort-cs3/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/sort-cs3/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/sort-cs3/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/sort-cs3/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/sort-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/sort-cs3" %}
## Custom sort comparer
@@ -147,14 +147,14 @@ In the following demo, the `Trustworthiness` column is sorted based on the custo
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/sort-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/sort-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/sort-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/sort-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/sort-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/sort-cs1" %}
## Known error validations
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/template.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/template.md
index 7672cc774..125124669 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/template.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/template.md
@@ -15,14 +15,14 @@ The following code example describes the above behavior.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/template-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/template-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/template-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/template-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/template-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/template-cs1" %}
## See Also
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/undo-redo.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/undo-redo.md
index e8be5019c..2fc718d1b 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/undo-redo.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/undo-redo.md
@@ -39,14 +39,14 @@ The following code example shows `How to update and customize your own actions f
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/undo-redo-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/undo-redo-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/undo-redo-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/undo-redo-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/undo-redo-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/undo-redo-cs1" %}
## See Also
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/worksheet.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/worksheet.md
index 1dd590b18..f345ac1ea 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES5/worksheet.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES5/worksheet.md
@@ -22,14 +22,14 @@ The following code example shows the insert sheet operation in spreadsheet.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/insert/sheet-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/insert/sheet-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/insert/sheet-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/insert/sheet-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/insert/sheet-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/insert/sheet-cs1" %}
### Insert a sheet programmatically and make it active sheet
@@ -39,14 +39,14 @@ The following code example shows how to insert a sheet programmatically and make
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/insert-sheet-change-active-sheet-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/insert-sheet-change-active-sheet-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/insert-sheet-change-active-sheet-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/insert-sheet-change-active-sheet-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/insert-sheet-change-active-sheet-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/insert-sheet-change-active-sheet-cs1" %}
## Delete sheet
@@ -79,14 +79,14 @@ The following code example shows the headers and gridlines operation in spreadsh
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/headers-gridlines-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/headers-gridlines-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/headers-gridlines-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/headers-gridlines-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/headers-gridlines-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/headers-gridlines-cs1" %}
## Sheet visibility
@@ -104,14 +104,14 @@ The following code example shows the three types of sheet visibility state.
{% tabs %}
{% highlight js tabtitle="index.js" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/sheet-visibility-cs1/index.js %}
+{% include code-snippet/spreadsheet/javascript-es5/sheet-visibility-cs1/index.js %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es5/sheet-visibility-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es5/sheet-visibility-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/sheet-visibility-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es5/sheet-visibility-cs1" %}
## See Also
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/cell-range.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/cell-range.md
index c0d28a4b9..a897d643b 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/cell-range.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/cell-range.md
@@ -25,14 +25,14 @@ The following code example shows the wrap text functionality in spreadsheet.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/wrap-text-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/wrap-text-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/wrap-text-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/wrap-text-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/wrap-text-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/wrap-text-cs1" %}
### Limitations of Wrap text
@@ -65,14 +65,14 @@ The following code example shows the merge cells operation in spreadsheet.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/merge-cells-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/merge-cells-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/merge-cells-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/merge-cells-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/merge-cells-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/merge-cells-cs1" %}
### Limitations of Merge
@@ -125,14 +125,14 @@ You can clear the highlighted invalid data by using the following ways,
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/data-validation-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/data-validation-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/data-validation-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/data-validation-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/data-validation-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/data-validation-cs1" %}
### Custom Data validation
@@ -153,14 +153,14 @@ The following code example demonstrates how to add custom data validation with a
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/data-validation-cs3/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/data-validation-cs3/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/data-validation-cs3/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/data-validation-cs3/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/data-validation-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/data-validation-cs3" %}
### Limitations of Data validation
@@ -236,14 +236,14 @@ In the following sample, you can enable/disable the fill option on the button cl
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/autofill-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/autofill-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/autofill-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/autofill-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/autofill-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/autofill-cs1" %}
### Limitations of Autofill
@@ -278,14 +278,14 @@ Clear the cell contents and formats in the Spreadsheet document by using the [cl
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/clear-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/clear-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/clear-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/clear-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/clear-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/clear-cs1" %}
## See Also
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/clipboard.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/clipboard.md
index 6dd9bdfa2..77c2f45a4 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/clipboard.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/clipboard.md
@@ -61,14 +61,14 @@ Paste can be done in one of the following ways.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/clipboard-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/clipboard-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/clipboard-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/clipboard-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/clipboard-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/clipboard-cs1" %}
## Prevent the paste functionality
@@ -76,14 +76,14 @@ The following example shows, how to prevent the paste action in spreadsheet. In
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/clipboard-cs2/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/clipboard-cs2/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/clipboard-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/clipboard-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/clipboard-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/clipboard-cs2" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/context-menu.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/context-menu.md
index 149c325cb..2e2465aac 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/context-menu.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/context-menu.md
@@ -70,14 +70,14 @@ In this demo, Custom Item is added after the Paste item in the context menu.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/contextmenu/addContextMenu-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/contextmenu/addContextMenu-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/contextmenu/addContextMenu-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/contextmenu/addContextMenu-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/contextmenu/addContextMenu-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/contextmenu/addContextMenu-cs1" %}
### Remove Context Menu Items
@@ -87,14 +87,14 @@ In this demo, Insert Column item has been removed from the row/column header con
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/contextmenu/removeContextMenu-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/contextmenu/removeContextMenu-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/contextmenu/removeContextMenu-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/contextmenu/removeContextMenu-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/contextmenu/removeContextMenu-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/contextmenu/removeContextMenu-cs1" %}
### Enable/Disable Context Menu Items
@@ -104,14 +104,14 @@ In this demo, Rename item is disabled in the pager context menu.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/contextmenu/enableContextMenuItems-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/contextmenu/enableContextMenuItems-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/contextmenu/enableContextMenuItems-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/contextmenu/enableContextMenuItems-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/contextmenu/enableContextMenuItems-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/contextmenu/enableContextMenuItems-cs1" %}
## See Also
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/data-binding.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/data-binding.md
index 494b582cd..eac769012 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/data-binding.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/data-binding.md
@@ -21,14 +21,14 @@ Refer to the following code example for local data binding.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/data-binding-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/data-binding-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/data-binding-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/data-binding-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/data-binding-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/data-binding-cs1" %}
> The local data source can also be provided as an instance of the [`DataManager`](https://helpej2.syncfusion.com/documentation/data/). By default, [`DataManager`](https://helpej2.syncfusion.com/documentation/data/) uses [`JsonAdaptor`](https://ej2.syncfusion.com/documentation/data/adaptors#json-adaptor) for local data-binding.
@@ -42,14 +42,14 @@ The following code example demonstrates how to customize the mapping of column d
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/field-mapping-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/field-mapping-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/field-mapping-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/field-mapping-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/field-mapping-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/field-mapping-cs1" %}
## Remote data
@@ -59,14 +59,14 @@ Refer to the following code example for remote data binding.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/data-binding-cs2/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/data-binding-cs2/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/data-binding-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/data-binding-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/data-binding-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/data-binding-cs2" %}
> By default, `DataManager` uses **ODataAdaptor** for remote data-binding.
@@ -76,14 +76,14 @@ Refer to the following code example for remote data binding.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/data-binding-cs3/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/data-binding-cs3/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/data-binding-cs3/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/data-binding-cs3/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/data-binding-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/data-binding-cs3" %}
### Web API
@@ -91,14 +91,14 @@ You can use WebApiAdaptor to bind spreadsheet with Web API created using OData e
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/data-binding-cs4/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/data-binding-cs4/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/data-binding-cs4/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/data-binding-cs4/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/data-binding-cs4" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/data-binding-cs4" %}
## Cell data binding
@@ -109,14 +109,14 @@ Refer to the following code example for cell data binding.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/data-binding-cs5/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/data-binding-cs5/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/data-binding-cs5/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/data-binding-cs5/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/data-binding-cs5" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/data-binding-cs5" %}
> The cell data binding also supports formula, style, number format, and more.
@@ -138,14 +138,14 @@ The following table defines the arguments of the `dataSourceChanged` event.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/dynamic-data-binding-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/dynamic-data-binding-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/dynamic-data-binding-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/dynamic-data-binding-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/dynamic-data-binding-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/dynamic-data-binding-cs1" %}
## Dynamic data binding using updateRange method
@@ -157,14 +157,14 @@ The following code example demonstrates how to dynamically update data using the
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/dynamic-data-binding-cs2/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/dynamic-data-binding-cs2/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/dynamic-data-binding-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/dynamic-data-binding-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/dynamic-data-binding-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/dynamic-data-binding-cs2" %}
## See Also
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/data-validation.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/data-validation.md
index 7d86fa410..2cf3fc943 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/data-validation.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/data-validation.md
@@ -51,14 +51,14 @@ You can clear the highlighted invalid data by using the following ways,
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/data-validation-cs2/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/data-validation-cs2/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/data-validation-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/data-validation-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/data-validation-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/data-validation-cs2" %}
## See Also
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/editing.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/editing.md
index 77266c8e9..58e1ef7e5 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/editing.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/editing.md
@@ -40,14 +40,14 @@ The following sample shows how to prevent the editing and cell save. Here `E` co
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/editing-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/editing-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/editing-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/editing-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/editing-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/editing-cs1" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/filter.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/filter.md
index de80faa02..982e56450 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/filter.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/filter.md
@@ -38,14 +38,14 @@ The following code example shows `filter` functionality in the Spreadsheet contr
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/filter-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/filter-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/filter-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/filter-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/filter-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/filter-cs1" %}
## Filter by cell value
@@ -88,14 +88,14 @@ The following code example shows how to get the filtered rows.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/filter-cs2/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/filter-cs2/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/filter-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/filter-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/filter-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/filter-cs2" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/formatting.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/formatting.md
index 13bb31ba7..210dd21d7 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/formatting.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/formatting.md
@@ -93,14 +93,14 @@ The following code example shows the number formatting in cell data.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/format/number-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/format/number-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/format/number-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/format/number-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/format/number-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/format/number-cs1" %}
## Configure culture-based custom format
@@ -147,14 +147,14 @@ The following code example demonstrates how to configure culture-based formats f
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/format/globalization-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/format/globalization-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/format/globalization-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/format/globalization-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/format/globalization-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/format/globalization-cs1" %}
## Text and cell formatting
@@ -217,14 +217,14 @@ The following code example shows the style formatting in text and cells of the s
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/format/cell-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/format/cell-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/format/cell-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/format/cell-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/format/cell-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/format/cell-cs1" %}
### Limitations of Formatting
@@ -317,14 +317,14 @@ You can clear the defined rules by using one of the following ways,
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/conditional-formatting-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/conditional-formatting-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/conditional-formatting-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/conditional-formatting-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/conditional-formatting-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/conditional-formatting-cs1" %}
### Limitations of Conditional formatting
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/formulas.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/formulas.md
index 6b349b913..620c7e736 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/formulas.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/formulas.md
@@ -33,14 +33,14 @@ In the example below, the Spreadsheet component is rendered with the `German` [`
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/formula-cs3/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/formula-cs3/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/formula-cs3/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/formula-cs3/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/formula-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/formula-cs3" %}
## Create User Defined Functions / Custom Functions
@@ -52,14 +52,14 @@ The following code example shows an unsupported formula in the spreadsheet.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/formula-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/formula-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/formula-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/formula-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/formula-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/formula-cs1" %}
Second, if you want to directly compute any formula or expression, you can use the [computeExpression](https://ej2.syncfusion.com/documentation/api/spreadsheet/#computeexpression) method. This method will work for both built-in and used-defined/custom formula.
@@ -67,14 +67,14 @@ The following code example shows how to use `computeExpression` method in the sp
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/formula-cs2/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/formula-cs2/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/formula-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/formula-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/formula-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/formula-cs2" %}
## Formula bar
@@ -93,14 +93,14 @@ The following code example shows the usage of named ranges support.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/defined-name-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/defined-name-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/defined-name-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/defined-name-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/defined-name-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/defined-name-cs1" %}
## Calculation Mode
@@ -121,14 +121,14 @@ The following code example demonstrates how to set the Automatic calculation mod
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/calculation-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/calculation-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/calculation-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/calculation-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/calculation-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/calculation-cs1" %}
### Manual Mode
@@ -143,14 +143,14 @@ The following code example demonstrates how to set the Manual calculation mode i
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/calculation-cs2/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/calculation-cs2/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/calculation-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/calculation-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/calculation-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/calculation-cs2" %}
## Supported Formulas
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/freeze-pane.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/freeze-pane.md
index 2abe29ae4..07904af58 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/freeze-pane.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/freeze-pane.md
@@ -46,14 +46,14 @@ In this demo, the frozenColumns is set as ‘2’, and the frozenRows is set as
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/freezepane-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/freezepane-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/freezepane-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/freezepane-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/freezepane-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/freezepane-cs1" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/getting-started.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/getting-started.md
index e5931a7aa..dafb0127c 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/getting-started.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/getting-started.md
@@ -141,14 +141,14 @@ The following example shows a basic Spreadsheet component.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/spreadsheet/getting-started-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/spreadsheet/getting-started-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/spreadsheet/getting-started-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/spreadsheet/getting-started-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/spreadsheet/getting-started-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/spreadsheet/getting-started-cs1" %}
> You can refer to our [JavaScript Spreadsheet](https://www.syncfusion.com/spreadsheet-editor-sdk/javascript-spreadsheet-editor) feature tour page for its groundbreaking feature representations. You can also explore our [JavaScript Spreadsheet example](https://document.syncfusion.com/demos/spreadsheet-editor/javascript/#/tailwind3/spreadsheet/default.html) that shows you how present and manipulate data, including editing, formulas, formatting, importing, and exporting.
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/global-local.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/global-local.md
index 40f4e625a..4582003cb 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/global-local.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/global-local.md
@@ -383,14 +383,14 @@ The following example demonstrates the Spreadsheet in `French` culture. In the b
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/global/locale-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/global/locale-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/global/locale-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/global/locale-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/global/locale-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/global/locale-cs1" %}
## Internationalization
@@ -400,14 +400,14 @@ The following example demonstrates the Spreadsheet in French [`fr-CH`] culture.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/global/internationalization-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/global/internationalization-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/global/internationalization-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/global/internationalization-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/global/internationalization-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/global/internationalization-cs1" %}
## Right to left (RTL)
@@ -415,14 +415,14 @@ RTL provides an option to switch the text direction and layout of the Spreadshee
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/global/rtl-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/global/rtl-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/global/rtl-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/global/rtl-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/global/rtl-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/global/rtl-cs1" %}
## See Also
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/how-to/change-active-sheet.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/how-to/change-active-sheet.md
index 40008dc9f..098fc9b9f 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/how-to/change-active-sheet.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/how-to/change-active-sheet.md
@@ -15,11 +15,11 @@ The following code example shows how to set the active sheet when importing an E
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/change-active-sheet-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/change-active-sheet-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/change-active-sheet-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/change-active-sheet-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/change-active-sheet-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/change-active-sheet-cs1" %}
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/how-to/create-a-object-structure.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/how-to/create-a-object-structure.md
index 350c16c6f..f8bcfc234 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/how-to/create-a-object-structure.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/how-to/create-a-object-structure.md
@@ -170,11 +170,11 @@ In the following demo, the JSON structure is passed to the `openFromJson` method
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/json-structure-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/json-structure-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/json-structure-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/json-structure-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/json-structure-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/json-structure-cs1" %}
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/how-to/identify-the-context-menu-opened.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/how-to/identify-the-context-menu-opened.md
index d30938434..6bb777127 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/how-to/identify-the-context-menu-opened.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/how-to/identify-the-context-menu-opened.md
@@ -24,11 +24,11 @@ The following code example shows how to identify the context menu opened.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/find-target-context-menu/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/find-target-context-menu/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/find-target-context-menu/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/find-target-context-menu/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/find-target-context-menu" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/find-target-context-menu" %}
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/illustrations.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/illustrations.md
index 437faeb36..952f5f913 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/illustrations.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/illustrations.md
@@ -70,14 +70,14 @@ Image feature allows you to view and insert an image in a spreadsheet, and you c
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/image-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/image-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/image-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/image-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/image-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/image-cs1" %}
### Limitations of Image
@@ -127,14 +127,14 @@ The available arguments in the `ChartModel` are:
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/chart-cs2/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/chart-cs2/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/chart-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/chart-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/chart-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/chart-cs2" %}
### Delete Chart
@@ -157,14 +157,14 @@ Chart feature allows you to view and insert a chart in a spreadsheet, and you ca
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/chart-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/chart-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/chart-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/chart-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/chart-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/chart-cs1" %}
#### Customization of line chart markers
@@ -172,14 +172,14 @@ Using the [`actionBegin`](https://ej2.syncfusion.com/documentation/api/spreadshe
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/chart-cs3/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/chart-cs3/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/chart-cs3/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/chart-cs3/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/chart-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/chart-cs3" %}
### Limitations of Chart
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/link.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/link.md
index d7cd58a36..c7eefeb28 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/link.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/link.md
@@ -57,14 +57,14 @@ There is an event named `beforeHyperlinkClick` which triggers only on clicking h
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/link-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/link-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/link-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/link-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/link-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/link-cs1" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/notes.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/notes.md
index ce5374c02..0b54bfe23 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/notes.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/notes.md
@@ -19,14 +19,14 @@ In the below example, you can add, edit, save, and delete notes.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/note-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/note-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/note-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/note-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/note-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/note-cs1" %}
## Adding a note
@@ -71,14 +71,14 @@ In the below example, the note functionality is disabled in the Spreadsheet.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/note-cs2/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/note-cs2/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/note-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/note-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/note-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/note-cs2" %}
## Integrating notes during initial loading and using cell data binding
@@ -86,14 +86,14 @@ The notes can be added initially when the Spreadsheet loads using cell data bind
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/note-cs3/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/note-cs3/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/note-cs3/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/note-cs3/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/note-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/note-cs3" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/open-save.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/open-save.md
index 20dd58256..0f3188f4e 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/open-save.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/open-save.md
@@ -23,14 +23,14 @@ The following sample shows the `Open` option by using the [`openUrl`](https://ej
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/open-save-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/open-save-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/open-save-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/open-save-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/open-save-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/open-save-cs1" %}
Please find the below table for the beforeOpen event arguments.
@@ -49,14 +49,14 @@ If you explore your machine to select and upload an excel document using the fil
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/import-using-uploader/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/import-using-uploader/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/import-using-uploader/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/import-using-uploader/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/import-using-uploader" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/import-using-uploader" %}
### Open an external URL excel file while initial load
@@ -64,14 +64,14 @@ You can achieve to access the remote excel file by using the [`created`](https:/
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/open-save-cs2/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/open-save-cs2/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/open-save-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/open-save-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/open-save-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/open-save-cs2" %}
### Open an excel file from blob data
@@ -81,14 +81,14 @@ Please find the code to fetch the blob data and load it into the Spreadsheet con
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/open-from-blobdata-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/open-from-blobdata-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/open-from-blobdata-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/open-from-blobdata-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/open-from-blobdata-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/open-from-blobdata-cs1" %}
### Open an Excel file located on a server
@@ -242,14 +242,14 @@ The following code example shows how to save the spreadsheet data as base64 stri
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/base-64-string/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/base-64-string/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/base-64-string/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/base-64-string/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/base-64-string" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/base-64-string" %}
### Open excel file into a read-only mode
@@ -257,14 +257,14 @@ You can open excel file into a read-only mode by using the [`openComplete`](http
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/open-save-cs4/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/open-save-cs4/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/open-save-cs4/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/open-save-cs4/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/open-save-cs4" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/open-save-cs4" %}
### Configure JSON deserialization options
@@ -294,14 +294,14 @@ The following code snippet demonstrates how to configure the deserialization opt
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/open-from-json/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/open-from-json/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/open-from-json/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/open-from-json/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/open-from-json" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/open-from-json" %}
### Improving Excel file open performance with parsing options
@@ -401,14 +401,14 @@ You can add your own custom header to the open action in the Spreadsheet. For pr
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/open-save-cs3/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/open-save-cs3/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/open-save-cs3/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/open-save-cs3/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/open-save-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/open-save-cs3" %}
### External workbook confirmation dialog
@@ -450,14 +450,14 @@ The following sample shows the `Save` option by using the [`saveUrl`](https://ej
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/open-save-cs5/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/open-save-cs5/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/open-save-cs5/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/open-save-cs5/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/open-save-cs5" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/open-save-cs5" %}
Please find the below table for the beforeSave event arguments.
@@ -484,14 +484,14 @@ Please find below the code to retrieve blob data from the Spreadsheet control be
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/save-as-blobdata-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/save-as-blobdata-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/save-as-blobdata-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/save-as-blobdata-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/save-as-blobdata-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/save-as-blobdata-cs1" %}
### Save an Excel file to a server
@@ -658,14 +658,14 @@ The following code example shows how to save the spreadsheet data as base64 stri
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/base-64-string/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/base-64-string/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/base-64-string/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/base-64-string/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/base-64-string" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/base-64-string" %}
### Configure JSON serialization options
@@ -695,14 +695,14 @@ The following code snippet demonstrates how to configure the serialization optio
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/save-as-json/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/save-as-json/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/save-as-json/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/save-as-json/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/save-as-json" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/save-as-json" %}
### Send and receive custom params from client to server
@@ -710,14 +710,14 @@ Passing the custom parameters from client to server by using [`beforeSave`](http
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/open-save-cs6/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/open-save-cs6/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/open-save-cs6/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/open-save-cs6/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/open-save-cs6" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/open-save-cs6" %}
Server side code snippets:
@@ -736,14 +736,14 @@ You can add your own custom header to the save action in the Spreadsheet. For pr
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/open-save-cs7/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/open-save-cs7/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/open-save-cs7/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/open-save-cs7/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/open-save-cs7" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/open-save-cs7" %}
### Change the PDF orientation
@@ -756,14 +756,14 @@ The possible values are:
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/open-save-cs8/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/open-save-cs8/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/open-save-cs8/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/open-save-cs8/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/open-save-cs8" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/open-save-cs8" %}
### Supported file formats
@@ -780,14 +780,14 @@ To save the Spreadsheet document as an `xlsx, xls, csv, or pdf` file, by using [
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/save-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/save-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/save-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/save-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/save-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/save-cs1" %}
## Server Configuration
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/open.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/open.md
index ad7c25df6..78c61d679 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/open.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/open.md
@@ -25,14 +25,14 @@ The following code example shows `Open` option in the Spreadsheet control.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/open-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/open-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/open-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/open-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/open-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/open-cs1" %}
> * Use `Ctrl + O` keyboard shortcut to open Excel documents.
> * The default value of the [allowOpen](../api/spreadsheet/#allowopen) property is `true`. For demonstration purpose, we have showcased the [allowOpen](../api/spreadsheet/#allowopen) property in previous code snippet.
\ No newline at end of file
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/print.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/print.md
index 152c35d47..1eb38b088 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/print.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/print.md
@@ -31,14 +31,14 @@ The `printOptions` contain three properties, as described below.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/print-cs2/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/print-cs2/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/print-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/print-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/print-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/print-cs2" %}
## Disable printing
@@ -48,14 +48,14 @@ The printing functionality in the Spreadsheet can be disabled by setting the [`a
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/print-cs3/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/print-cs3/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/print-cs3/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/print-cs3/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/print-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/print-cs3" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/protect-sheet.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/protect-sheet.md
index 77c244c99..050356e4c 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/protect-sheet.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/protect-sheet.md
@@ -49,14 +49,14 @@ The following example shows `Protect Sheet` functionality with password in the S
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/protect-sheet-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/protect-sheet-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/protect-sheet-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/protect-sheet-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/protect-sheet-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/protect-sheet-cs1" %}
### Limitations of Protect sheet
@@ -81,14 +81,14 @@ In protected spreadsheet, to make some particular cell or range of cells are edi
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/protect-sheet-cs2/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/protect-sheet-cs2/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/protect-sheet-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/protect-sheet-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/protect-sheet-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/protect-sheet-cs2" %}
## Make cells read-only without protecting worksheet
@@ -140,14 +140,14 @@ The following example demonstrates how to make rows, columns, and cells read-onl
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/readonly-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/readonly-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/readonly-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/readonly-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/readonly-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/readonly-cs1" %}
## Protect Workbook
@@ -166,27 +166,27 @@ The following example shows `Protect Workbook` by using the [`isProtected`](http
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/protect-workbook/default-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/protect-workbook/default-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/protect-workbook/default-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/protect-workbook/default-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/protect-workbook/default-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/protect-workbook/default-cs1" %}
The following example shows `Protect Workbook` by using the [`password`](https://ej2.syncfusion.com/documentation/api/spreadsheet/#password) property in the Spreadsheet control. To unprotect the workbook, click the unprotect workbook button in the data tab and provide the password as syncfusion® in the dialog box.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/protect-workbook/default-cs2/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/protect-workbook/default-cs2/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/protect-workbook/default-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/protect-workbook/default-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/protect-workbook/default-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/protect-workbook/default-cs2" %}
## Unprotect Workbook
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/ribbon.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/ribbon.md
index 51523ea12..8d93e6294 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/ribbon.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/ribbon.md
@@ -31,14 +31,14 @@ The following code example shows the usage of ribbon customization.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/ribbon/cutomization-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/ribbon/cutomization-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/ribbon/cutomization-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/ribbon/cutomization-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/ribbon/cutomization-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/ribbon/cutomization-cs1" %}
## See Also
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/rows-and-columns.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/rows-and-columns.md
index 4be35b019..57fc4c7e4 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/rows-and-columns.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/rows-and-columns.md
@@ -30,14 +30,14 @@ The following code example shows the options for inserting rows in the spreadshe
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/insert/row-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/insert/row-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/insert/row-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/insert/row-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/insert/row-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/insert/row-cs1" %}
### Column
@@ -50,14 +50,14 @@ The following code example shows the options for inserting columns in the spread
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/insert/column-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/insert/column-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/insert/column-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/insert/column-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/insert/column-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/insert/column-cs1" %}
## Delete
@@ -72,14 +72,14 @@ The following code example shows the delete operation of rows and columns in the
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/delete/row-column-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/delete/row-column-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/delete/row-column-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/delete/row-column-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/delete/row-column-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/delete/row-column-cs1" %}
## Limitations of insert and delete
@@ -114,14 +114,14 @@ The following code example shows the hide/show rows and columns operation in the
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/hide-show-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/hide-show-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/hide-show-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/hide-show-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/hide-show-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/hide-show-cs1" %}
## Size
@@ -142,14 +142,14 @@ The following code example shows how to change the height for single/multiple ro
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/row-height-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/row-height-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/row-height-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/row-height-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/row-height-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/row-height-cs1" %}
### Column
@@ -166,14 +166,14 @@ The following code example shows how to change the width for single/multiple col
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/column-width-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/column-width-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/column-width-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/column-width-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/column-width-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/column-width-cs1" %}
## Changing text in column headers
@@ -183,14 +183,14 @@ The following code example shows how to change the text in the column headers.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/column-header-change-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/column-header-change-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/column-header-change-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/column-header-change-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/column-header-change-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/column-header-change-cs1" %}
## See Also
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/save.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/save.md
index fced6b547..43433d497 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/save.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/save.md
@@ -25,14 +25,14 @@ The following code example shows `Save` option in the Spreadsheet control.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/save-cs2/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/save-cs2/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/save-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/save-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/save-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/save-cs2" %}
> * Use `Ctrl + S` keyboard shortcut to save the Spreadsheet data as Excel file.
> * The default value of [allowSave](../api/spreadsheet/#allowsave) property is `true`. For demonstration purpose, we have showcased the [allowSave](../api/spreadsheet/#allowsave) property in previous code snippet.
\ No newline at end of file
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/scrolling.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/scrolling.md
index 8dae962a0..92ed4b968 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/scrolling.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/scrolling.md
@@ -52,11 +52,11 @@ The following code example shows the finite scrolling with defined rows and colu
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/scrolling-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/scrolling-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/scrolling-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/scrolling-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/scrolling-cs1" %}
\ No newline at end of file
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/scrolling-cs1" %}
\ No newline at end of file
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/searching.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/searching.md
index adbc5838c..6503d30c1 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/searching.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/searching.md
@@ -63,14 +63,14 @@ In the following sample, searching can be done by following ways:
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/searching-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/searching-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/searching-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/searching-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/searching-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/searching-cs1" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/selection.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/selection.md
index 64cfd2733..bd3433767 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/selection.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/selection.md
@@ -48,14 +48,14 @@ The following sample shows the row selection in the spreadsheet, here selecting
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/selection-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/selection-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/selection-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/selection-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/selection-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/selection-cs1" %}
## Column selection
@@ -74,14 +74,14 @@ The following sample shows the column selection in the spreadsheet, here selecti
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/selection-cs2/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/selection-cs2/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/selection-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/selection-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/selection-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/selection-cs2" %}
## Get selected cell values
@@ -91,14 +91,14 @@ Below is a code example demonstrating how to retrieve the selected cell values a
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/selected-cell-values/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/selected-cell-values/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/selected-cell-values/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/selected-cell-values/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/selected-cell-values" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/selected-cell-values" %}
## Remove Selection
@@ -106,14 +106,14 @@ The following sample shows, how to remove the selection in the spreadsheet. Here
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/selection-cs3/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/selection-cs3/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/selection-cs3/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/selection-cs3/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/selection-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/selection-cs3" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/sort.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/sort.md
index 98f145272..9bf12fdbb 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/sort.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/sort.md
@@ -37,14 +37,14 @@ The following code example shows `Sort` functionality in the Spreadsheet control
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/sort-cs2/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/sort-cs2/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/sort-cs2/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/sort-cs2/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/sort-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/sort-cs2" %}
## Data contains header
@@ -119,14 +119,14 @@ The multi-column sorting can also be performed manually by passing sort options
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/sort-cs3/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/sort-cs3/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/sort-cs3/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/sort-cs3/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/sort-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/sort-cs3" %}
## Custom sort comparer
@@ -146,14 +146,14 @@ In the following demo, the `Trustworthiness` column is sorted based on the custo
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/sort-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/sort-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/sort-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/sort-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/sort-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/sort-cs1" %}
## Known error validations
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/template.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/template.md
index 0684e0396..2c05af02c 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/template.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/template.md
@@ -15,14 +15,14 @@ The following code example describes the above behavior.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/template-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/template-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/template-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/template-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/template-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/template-cs1" %}
## See Also
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/undo-redo.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/undo-redo.md
index 484b5673b..9cd089719 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/undo-redo.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/undo-redo.md
@@ -39,14 +39,14 @@ The following code example shows `How to update and customize your own actions f
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/undo-redo-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/undo-redo-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/undo-redo-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/undo-redo-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "page.domainurl/code-snippet/excel/spreadsheet/javascript-es6/undo-redo-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/undo-redo-cs1" %}
## See Also
diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/worksheet.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/worksheet.md
index 8000d2d69..795cf73b6 100644
--- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/worksheet.md
+++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/worksheet.md
@@ -23,14 +23,14 @@ The following code example shows the insert sheet operation in spreadsheet.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/insert/sheet-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/insert/sheet-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/insert/sheet-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/insert/sheet-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/insert/sheet-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/insert/sheet-cs1" %}
### Insert a sheet programmatically and make it active sheet
@@ -40,14 +40,14 @@ The following code example shows how to insert a sheet programmatically and make
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/insert-sheet-change-active-sheet-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/insert-sheet-change-active-sheet-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/insert-sheet-change-active-sheet-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/insert-sheet-change-active-sheet-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/insert-sheet-change-active-sheet-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/insert-sheet-change-active-sheet-cs1" %}
## Delete sheet
@@ -80,14 +80,14 @@ The following code example shows the headers and gridlines operation in spreadsh
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/headers-gridlines-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/headers-gridlines-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/headers-gridlines-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/headers-gridlines-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/headers-gridlines-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/headers-gridlines-cs1" %}
## Sheet visibility
@@ -105,14 +105,14 @@ The following code example shows the three types of sheet visibility state.
{% tabs %}
{% highlight ts tabtitle="index.ts" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/sheet-visibility-cs1/index.ts %}
+{% include code-snippet/spreadsheet/javascript-es6/sheet-visibility-cs1/index.ts %}
{% endhighlight %}
{% highlight html tabtitle="index.html" %}
-{% include code-snippet/excel/spreadsheet/javascript-es6/sheet-visibility-cs1/index.html %}
+{% include code-snippet/spreadsheet/javascript-es6/sheet-visibility-cs1/index.html %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/sheet-visibility-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/javascript-es6/sheet-visibility-cs1" %}
## See Also
diff --git a/Document-Processing/Excel/Spreadsheet/React/cell-range.md b/Document-Processing/Excel/Spreadsheet/React/cell-range.md
index 392e9da89..387398d25 100644
--- a/Document-Processing/Excel/Spreadsheet/React/cell-range.md
+++ b/Document-Processing/Excel/Spreadsheet/React/cell-range.md
@@ -29,20 +29,20 @@ The following code example shows the wrap text functionality in spreadsheet.
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/wrap-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/wrap-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/wrap-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/wrap-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/wrap-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/wrap-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/wrap-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/wrap-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/wrap-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/wrap-cs1" %}
### Limitations of Wrap text
@@ -74,20 +74,20 @@ The following code example shows the merge cells operation in spreadsheet.
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/merge-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/merge-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/merge-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/merge-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/merge-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/merge-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/merge-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/merge-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/merge-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/merge-cs1" %}
### Limitations of Merge
@@ -140,14 +140,14 @@ You can clear the highlighted invalid data by using the following ways,
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/data-validation-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/data-validation-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/data-validation-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/data-validation-cs1/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/data-validation-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/data-validation-cs1" %}
### Custom Data validation
@@ -168,14 +168,14 @@ The following code example demonstrates how to add custom data validation with a
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/data-validation-cs2/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/data-validation-cs2/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/data-validation-cs2/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/data-validation-cs2/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/data-validation-cs2" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/data-validation-cs2" %}
### Limitations of Data validation
@@ -251,20 +251,20 @@ In the following sample, you can enable/disable the fill option on the button cl
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/autofill-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/autofill-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/autofill-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/autofill-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/autofill-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/autofill-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/autofill-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/autofill-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/autofill-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/autofill-cs1" %}
### Limitations of Autofill
@@ -299,20 +299,20 @@ Clear the cell contents and formats in the Spreadsheet document by using the [cl
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/clear-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/clear-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/clear-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/clear-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/clear-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/clear-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/clear-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/clear-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/clear-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/clear-cs1" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/React/clipboard.md b/Document-Processing/Excel/Spreadsheet/React/clipboard.md
index 8da8192cb..dc24e7f00 100644
--- a/Document-Processing/Excel/Spreadsheet/React/clipboard.md
+++ b/Document-Processing/Excel/Spreadsheet/React/clipboard.md
@@ -61,20 +61,20 @@ Paste can be done in one of the following ways.
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/clipboard-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/clipboard-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/clipboard-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/clipboard-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/clipboard-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/clipboard-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/clipboard-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/clipboard-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/clipboard-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/clipboard-cs1" %}
## Prevent the paste functionality
@@ -82,20 +82,20 @@ The following example shows, how to prevent the paste action in spreadsheet. In
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/clipboard-cs2/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/clipboard-cs2/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/clipboard-cs2/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/clipboard-cs2/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/clipboard-cs2/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/clipboard-cs2/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/clipboard-cs2/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/clipboard-cs2/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/clipboard-cs2" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/clipboard-cs2" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/React/context-menu.md b/Document-Processing/Excel/Spreadsheet/React/context-menu.md
index 3b6b6b452..aeb1b1bb3 100644
--- a/Document-Processing/Excel/Spreadsheet/React/context-menu.md
+++ b/Document-Processing/Excel/Spreadsheet/React/context-menu.md
@@ -70,14 +70,14 @@ In this demo, Custom Item is added after the Paste item in the context menu.
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/context-menu-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/context-menu-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/context-menu-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/context-menu-cs1/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/context-menu-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/context-menu-cs1" %}
### Remove Context Menu Items
@@ -87,14 +87,14 @@ In this demo, Insert Column item has been removed from the row/column header con
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/context-menu-cs2/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/context-menu-cs2/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/context-menu-cs2/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/context-menu-cs2/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/context-menu-cs2" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/context-menu-cs2" %}
### Enable/Disable Context Menu Items
@@ -104,14 +104,14 @@ In this demo, Rename item is disabled in the pager context menu.
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/context-menu-cs3/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/context-menu-cs3/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/context-menu-cs3/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/context-menu-cs3/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/context-menu-cs3" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/context-menu-cs3" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/React/data-binding.md b/Document-Processing/Excel/Spreadsheet/React/data-binding.md
index ae8e6262b..3af4fa346 100644
--- a/Document-Processing/Excel/Spreadsheet/React/data-binding.md
+++ b/Document-Processing/Excel/Spreadsheet/React/data-binding.md
@@ -25,20 +25,20 @@ Refer to the following code example for local data binding.
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/local-data-binding-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/local-data-binding-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/local-data-binding-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/local-data-binding-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/local-data-binding-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/local-data-binding-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/local-data-binding-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/local-data-binding-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/local-data-binding-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/local-data-binding-cs1" %}
> The local data source can also be provided as an instance of the [`DataManager`](https://ej2.syncfusion.com/react/documentation/data/getting-started). By default, [`DataManager`](https://ej2.syncfusion.com/react/documentation/data/getting-started) uses **JsonAdaptor** for local data-binding.
@@ -52,14 +52,14 @@ The following code example demonstrates how to customize the mapping of column d
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/field-mapping-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/field-mapping-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/field-mapping-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/field-mapping-cs1/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/field-mapping-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/react/field-mapping-cs1" %}
## Remote data
@@ -69,20 +69,20 @@ Refer to the following code example for remote data binding.
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/remote-data-binding-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/remote-data-binding-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/remote-data-binding-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/remote-data-binding-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/remote-data-binding-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/remote-data-binding-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/remote-data-binding-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/remote-data-binding-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/remote-data-binding-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/remote-data-binding-cs1" %}
> By default, `DataManager` uses **ODataAdaptor** for remote data-binding.
@@ -92,20 +92,20 @@ Refer to the following code example for remote data binding.
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/remote-data-binding-cs2/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/remote-data-binding-cs2/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/remote-data-binding-cs2/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/remote-data-binding-cs2/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/remote-data-binding-cs2/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/remote-data-binding-cs2/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/remote-data-binding-cs2/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/remote-data-binding-cs2/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/remote-data-binding-cs2" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/remote-data-binding-cs2" %}
### Web API
@@ -113,20 +113,20 @@ You can use WebApiAdaptor to bind spreadsheet with Web API created using OData e
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/remote-data-binding-cs3/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/remote-data-binding-cs3/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/remote-data-binding-cs3/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/remote-data-binding-cs3/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/remote-data-binding-cs3/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/remote-data-binding-cs3/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/remote-data-binding-cs3/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/remote-data-binding-cs3/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/remote-data-binding-cs3" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/remote-data-binding-cs3" %}
## Cell data binding
@@ -136,20 +136,20 @@ Refer to the following code example for cell data binding.
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/cell-data-binding-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/cell-data-binding-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/cell-data-binding-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/cell-data-binding-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/cell-data-binding-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/cell-data-binding-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/cell-data-binding-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/cell-data-binding-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/cell-data-binding-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/cell-data-binding-cs1" %}
> The cell data binding also supports formula, style, number format, and more.
@@ -171,20 +171,20 @@ The following table defines the arguments of the `dataSourceChanged` event.
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/dynamic-data-binding-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/dynamic-data-binding-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/dynamic-data-binding-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/dynamic-data-binding-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/dynamic-data-binding-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/dynamic-data-binding-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/dynamic-data-binding-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/dynamic-data-binding-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/dynamic-data-binding-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/dynamic-data-binding-cs1" %}
## Dynamic data binding using updateRange method
@@ -196,20 +196,20 @@ The following code example demonstrates how to dynamically update data using the
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/dynamic-data-binding-cs2/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/dynamic-data-binding-cs2/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/dynamic-data-binding-cs2/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/dynamic-data-binding-cs2/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/dynamic-data-binding-cs2/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/dynamic-data-binding-cs2/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/dynamic-data-binding-cs2/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/dynamic-data-binding-cs2/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/dynamic-data-binding-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/react/dynamic-data-binding-cs2" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/React/editing.md b/Document-Processing/Excel/Spreadsheet/React/editing.md
index 641d6afea..7a11ac80f 100644
--- a/Document-Processing/Excel/Spreadsheet/React/editing.md
+++ b/Document-Processing/Excel/Spreadsheet/React/editing.md
@@ -44,20 +44,20 @@ The following sample shows how to prevent the editing and cell save. Here `E` co
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/editing-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/editing-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/editing-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/editing-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/editing-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/editing-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/editing-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/editing-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/editing-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/editing-cs1" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/React/filter.md b/Document-Processing/Excel/Spreadsheet/React/filter.md
index f3d9cf680..9e1e7cd20 100644
--- a/Document-Processing/Excel/Spreadsheet/React/filter.md
+++ b/Document-Processing/Excel/Spreadsheet/React/filter.md
@@ -37,20 +37,20 @@ The following code example shows `filter` functionality in the Spreadsheet contr
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/filter-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/filter-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/filter-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/filter-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/filter-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/filter-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/filter-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/filter-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/filter-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/filter-cs1" %}
## Filter by cell value
@@ -92,20 +92,20 @@ The following code example shows how to get the filtered rows.
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/filter-cs2/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/filter-cs2/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/filter-cs2/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/filter-cs2/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/filter-cs2/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/filter-cs2/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/filter-cs2/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/filter-cs2/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/filter-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/react/filter-cs2" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/React/formatting.md b/Document-Processing/Excel/Spreadsheet/React/formatting.md
index 9671bf111..578dbd209 100644
--- a/Document-Processing/Excel/Spreadsheet/React/formatting.md
+++ b/Document-Processing/Excel/Spreadsheet/React/formatting.md
@@ -94,20 +94,20 @@ The following code example shows the number formatting in cell data.
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/numberformat-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/numberformat-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/numberformat-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/numberformat-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/numberformat-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/numberformat-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/numberformat-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/numberformat-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/numberformat-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/numberformat-cs1" %}
## Configure culture-based custom format
@@ -154,20 +154,20 @@ The following code example demonstrates how to configure culture-based formats f
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/globalization-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/globalization-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/globalization-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/globalization-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/globalization-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/globalization-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/globalization-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/globalization-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/globalization-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/react/globalization-cs1" %}
## Text and cell formatting
@@ -230,20 +230,20 @@ The following code example shows the style formatting in text and cells of the s
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/cellformat-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/cellformat-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/cellformat-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/cellformat-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/cellformat-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/cellformat-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/cellformat-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/cellformat-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/cellformat-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/cellformat-cs1" %}
### Limitations of Formatting
@@ -333,20 +333,20 @@ You can clear the defined rules by using one of the following ways,
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/conditional-formatting-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/conditional-formatting-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/conditional-formatting-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/conditional-formatting-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/conditional-formatting-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/conditional-formatting-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/conditional-formatting-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/conditional-formatting-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/conditional-formatting-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/conditional-formatting-cs1" %}
### Limitations of Conditional formatting
diff --git a/Document-Processing/Excel/Spreadsheet/React/formulas.md b/Document-Processing/Excel/Spreadsheet/React/formulas.md
index cb12fd38b..414bd6789 100644
--- a/Document-Processing/Excel/Spreadsheet/React/formulas.md
+++ b/Document-Processing/Excel/Spreadsheet/React/formulas.md
@@ -32,23 +32,23 @@ In the example below, the Spreadsheet component is rendered with the `German cul
{% tabs %}
{% highlight js tabtitle="App.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/formula-cs3/app/App.jsx %}
+{% include code-snippet/spreadsheet/react/formula-cs3/app/App.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="App.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/formula-cs3/app/App.tsx %}
+{% include code-snippet/spreadsheet/react/formula-cs3/app/App.tsx %}
{% endhighlight %}
{% highlight js tabtitle="locale.json" %}
-{% include code-snippet/excel/spreadsheet/react/formula-cs3/app/locale.json %}
+{% include code-snippet/spreadsheet/react/formula-cs3/app/locale.json %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/formula-cs3/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/formula-cs3/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/formula-cs3/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/formula-cs3/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/formula-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/react/formula-cs3" %}
## Create User Defined Functions / Custom Functions
@@ -60,20 +60,20 @@ The following code example shows an unsupported formula in the spreadsheet.
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/formula-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/formula-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/formula-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/formula-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/formula-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/formula-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/formula-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/formula-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/formula-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/formula-cs1" %}
Second, if you want to directly compute any formula or expression, you can use the [computeExpression](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/#computeexpression) method. This method will work for both built-in and used-defined/custom formula.
@@ -81,20 +81,20 @@ The following code example shows how to use `computeExpression` method in the sp
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/formula-cs2/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/formula-cs2/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/formula-cs2/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/formula-cs2/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/formula-cs2/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/formula-cs2/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/formula-cs2/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/formula-cs2/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/formula-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/react/formula-cs2" %}
## Formula bar
@@ -113,20 +113,20 @@ The following code example shows the usage of named ranges support.
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/defined-name-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/defined-name-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/defined-name-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/defined-name-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/defined-name-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/defined-name-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/defined-name-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/defined-name-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/defined-name-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/defined-name-cs1" %}
## Calculation Mode
@@ -147,20 +147,20 @@ The following code example demonstrates how to set the Automatic calculation mod
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/calculation-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/calculation-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/calculation-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/calculation-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/calculation-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/calculation-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/calculation-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/calculation-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/calculation-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/calculation-cs1" %}
### Manual Mode
@@ -175,20 +175,20 @@ The following code example demonstrates how to set the Manual calculation mode i
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/calculation-cs2/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/calculation-cs2/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/calculation-cs2/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/calculation-cs2/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/calculation-cs2/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/calculation-cs2/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/calculation-cs2/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/calculation-cs2/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/calculation-cs2" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/calculation-cs2" %}
## Supported Formulas
diff --git a/Document-Processing/Excel/Spreadsheet/React/freeze-pane.md b/Document-Processing/Excel/Spreadsheet/React/freeze-pane.md
index f15c67db1..a03f48d83 100644
--- a/Document-Processing/Excel/Spreadsheet/React/freeze-pane.md
+++ b/Document-Processing/Excel/Spreadsheet/React/freeze-pane.md
@@ -50,20 +50,20 @@ In this demo, the frozenColumns is set as ‘2’, and the frozenRows is set as
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/freeze-pane-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/freeze-pane-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/freeze-pane-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/freeze-pane-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/freeze-pane-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/freeze-pane-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/freeze-pane-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/freeze-pane-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/freeze-pane-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/freeze-pane-cs1" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/React/getting-started.md b/Document-Processing/Excel/Spreadsheet/React/getting-started.md
index d492b24c2..872e58322 100644
--- a/Document-Processing/Excel/Spreadsheet/React/getting-started.md
+++ b/Document-Processing/Excel/Spreadsheet/React/getting-started.md
@@ -109,14 +109,14 @@ The following example shows a basic spreadsheet component.
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/getting-started-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/getting-started-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/getting-started-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/getting-started-cs1/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/getting-started-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/getting-started-cs1" %}
> You can refer to our [React Spreadsheet](https://www.syncfusion.com/react-components/react-spreadsheet) feature tour page for its groundbreaking feature representations. You can also explore our [React Spreadsheet example](https://document.syncfusion.com/demos/spreadsheet-editor/react/#/tailwind3/spreadsheet/default) that shows you how to present and manipulate data.
diff --git a/Document-Processing/Excel/Spreadsheet/React/global-local.md b/Document-Processing/Excel/Spreadsheet/React/global-local.md
index 6cbc05762..26d7cbbfc 100644
--- a/Document-Processing/Excel/Spreadsheet/React/global-local.md
+++ b/Document-Processing/Excel/Spreadsheet/React/global-local.md
@@ -383,20 +383,20 @@ The following example demonstrates the Spreadsheet in `French` culture. In the b
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/local-data-binding-cs2/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/local-data-binding-cs2/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/local-data-binding-cs2/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/local-data-binding-cs2/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/local-data-binding-cs2/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/local-data-binding-cs2/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/local-data-binding-cs2/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/local-data-binding-cs2/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/local-data-binding-cs2" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/local-data-binding-cs2" %}
## Internationalization
@@ -505,20 +505,20 @@ RTL provides an option to switch the text direction and layout of the Spreadshee
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/internationalization-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/internationalization-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/internationalization-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/internationalization-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/internationalization-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/internationalization-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/internationalization-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/internationalization-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/internationalization-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/internationalization-cs1" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/React/how-to/change-active-sheet.md b/Document-Processing/Excel/Spreadsheet/React/how-to/change-active-sheet.md
index 4ef1357b2..c1952a6a4 100644
--- a/Document-Processing/Excel/Spreadsheet/React/how-to/change-active-sheet.md
+++ b/Document-Processing/Excel/Spreadsheet/React/how-to/change-active-sheet.md
@@ -15,11 +15,11 @@ The following code example shows how to set the active sheet when importing an E
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/change-active-sheet-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/change-active-sheet-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/change-active-sheet-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/change-active-sheet-cs1/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/change-active-sheet-cs1" %}
\ No newline at end of file
+{% previewsample "/document-processing/code-snippet/spreadsheet/react/change-active-sheet-cs1" %}
\ No newline at end of file
diff --git a/Document-Processing/Excel/Spreadsheet/React/how-to/create-a-object-structure.md b/Document-Processing/Excel/Spreadsheet/React/how-to/create-a-object-structure.md
index a6996d339..a2d051642 100644
--- a/Document-Processing/Excel/Spreadsheet/React/how-to/create-a-object-structure.md
+++ b/Document-Processing/Excel/Spreadsheet/React/how-to/create-a-object-structure.md
@@ -170,17 +170,17 @@ In the following demo, the JSON structure is passed to the `openFromJson` method
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/json-structure-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/json-structure-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/json-structure-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/json-structure-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/json-structure-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/json-structure-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/json-structure-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/json-structure-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/json-structure-cs1" %}
\ No newline at end of file
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/json-structure-cs1" %}
\ No newline at end of file
diff --git a/Document-Processing/Excel/Spreadsheet/React/how-to/identify-the-context-menu-opened.md b/Document-Processing/Excel/Spreadsheet/React/how-to/identify-the-context-menu-opened.md
index f5588f06b..abcdde607 100644
--- a/Document-Processing/Excel/Spreadsheet/React/how-to/identify-the-context-menu-opened.md
+++ b/Document-Processing/Excel/Spreadsheet/React/how-to/identify-the-context-menu-opened.md
@@ -24,11 +24,11 @@ The following code example shows how to identify the context menu opened.
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/find-target-context-menu/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/find-target-context-menu/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/find-target-context-menu/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/find-target-context-menu/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/find-target-context-menu" %}
\ No newline at end of file
+{% previewsample "/document-processing/code-snippet/spreadsheet/react/find-target-context-menu" %}
\ No newline at end of file
diff --git a/Document-Processing/Excel/Spreadsheet/React/illustrations.md b/Document-Processing/Excel/Spreadsheet/React/illustrations.md
index 3948e88af..9af8640af 100644
--- a/Document-Processing/Excel/Spreadsheet/React/illustrations.md
+++ b/Document-Processing/Excel/Spreadsheet/React/illustrations.md
@@ -70,20 +70,20 @@ Image feature allows you to view and insert an image in a spreadsheet, and you c
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/image-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/image-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/image-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/image-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/image-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/image-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/image-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/image-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/image-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/image-cs1" %}
### Limitations of Image
@@ -133,20 +133,20 @@ The available arguments in the `ChartModel` are:
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/chart-cs2/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/chart-cs2/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/chart-cs2/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/chart-cs2/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/chart-cs2/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/chart-cs2/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/chart-cs2/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/chart-cs2/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/chart-cs2" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/chart-cs2" %}
### Delete Chart
@@ -169,20 +169,20 @@ Chart feature allows you to view and insert a chart in a spreadsheet, and you ca
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/chart-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/chart-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/chart-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/chart-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/chart-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/chart-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/chart-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/chart-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/chart-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/chart-cs1" %}
#### Customization of line chart markers
@@ -190,20 +190,20 @@ Using the [`actionBegin`](https://ej2.syncfusion.com/react/documentation/api/spr
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/chart-cs3/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/chart-cs3/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/chart-cs3/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/chart-cs3/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/chart-cs3/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/chart-cs3/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/chart-cs3/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/chart-cs3/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/chart-cs3" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/chart-cs3" %}
### Limitations of Chart
diff --git a/Document-Processing/Excel/Spreadsheet/React/link.md b/Document-Processing/Excel/Spreadsheet/React/link.md
index a3191e997..cc96406e7 100644
--- a/Document-Processing/Excel/Spreadsheet/React/link.md
+++ b/Document-Processing/Excel/Spreadsheet/React/link.md
@@ -53,14 +53,14 @@ There is an event named `beforeHyperlinkClick` which triggers only on clicking h
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/link-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/link-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/link-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/link-cs1/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/link-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/link-cs1" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/React/notes.md b/Document-Processing/Excel/Spreadsheet/React/notes.md
index d1b91524f..832fccab7 100644
--- a/Document-Processing/Excel/Spreadsheet/React/notes.md
+++ b/Document-Processing/Excel/Spreadsheet/React/notes.md
@@ -19,14 +19,14 @@ In the below example, you can add, edit, save, and delete notes.
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/note-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/note-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/note-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/note-cs1/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/note-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/note-cs1" %}
## Adding a note
@@ -71,14 +71,14 @@ In the below example, the note functionality is disabled in the Spreadsheet.
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/note-cs2/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/note-cs2/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/note-cs2/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/note-cs2/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/note-cs2" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/note-cs2" %}
## Integrating notes during initial loading and using cell data binding
@@ -86,14 +86,14 @@ The notes can be added initially when the Spreadsheet loads using cell data bind
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/note-cs3/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/note-cs3/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/note-cs3/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/note-cs3/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/note-cs3" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/note-cs3" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/React/open-save.md b/Document-Processing/Excel/Spreadsheet/React/open-save.md
index 6c3a4f64b..911133e9d 100644
--- a/Document-Processing/Excel/Spreadsheet/React/open-save.md
+++ b/Document-Processing/Excel/Spreadsheet/React/open-save.md
@@ -27,14 +27,14 @@ The following sample shows the `Open` option by using the [`openUrl`](https://ej
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs1/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/open-save-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/open-save-cs1" %}
Please find the below table for the beforeOpen event arguments.
@@ -55,14 +55,14 @@ The following code example shows how to import an Excel document using file uplo
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs9/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs9/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs9/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs9/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/open-save-cs9" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/react/open-save-cs9" %}
### Open an external URL excel file while initial load
@@ -70,14 +70,14 @@ You can achieve to access the remote Excel file by using the [`created`](https:/
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs2/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs2/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs2/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs2/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/open-save-cs2" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/open-save-cs2" %}
### Open an excel file from blob data
@@ -87,14 +87,14 @@ Please find the code to fetch the blob data and load it into the Spreadsheet com
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-from-blobdata-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/open-from-blobdata-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-from-blobdata-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/open-from-blobdata-cs1/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/open-from-blobdata-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/react/open-from-blobdata-cs1" %}
### Open an Excel file located on a server
@@ -246,14 +246,14 @@ The following code example shows how to open the spreadsheet data as base64 stri
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/base-64-string/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/base-64-string/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/base-64-string/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/base-64-string/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/base-64-string" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/react/base-64-string" %}
### Open excel file into a read-only mode
@@ -261,14 +261,14 @@ You can open Excel file into a read-only mode by using the [`openComplete`](http
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs4/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs4/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs4/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs4/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/open-save-cs4" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/react/open-save-cs4" %}
### Configure JSON deserialization options
@@ -298,14 +298,14 @@ The following code snippet demonstrates how to configure the deserialization opt
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-from-json/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/open-from-json/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-from-json/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/open-from-json/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/open-from-json" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/react/open-from-json" %}
### Improving Excel file open performance with parsing options
@@ -416,14 +416,14 @@ You can add your own custom header to the open action in the Spreadsheet. For pr
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs3/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs3/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs3/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs3/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/open-save-cs3" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/open-save-cs3" %}
### External workbook confirmation dialog
@@ -465,20 +465,20 @@ The following sample shows the `Save` option by using the [`saveUrl`](https://ej
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs5/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs5/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs5/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs5/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs5/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs5/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs5/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs5/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/open-save-cs5" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/open-save-cs5" %}
Please find the below table for the beforeSave event arguments.
@@ -504,14 +504,14 @@ Please find below the code to retrieve blob data from the Spreadsheet component
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/save-as-blobdata-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/save-as-blobdata-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/save-as-blobdata-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/save-as-blobdata-cs1/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/save-as-blobdata-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/react/save-as-blobdata-cs1" %}
### Save an Excel file to a server
@@ -679,14 +679,14 @@ The following code example shows how to save the spreadsheet data as base64 stri
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/base-64-string/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/base-64-string/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/base-64-string/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/base-64-string/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/base-64-string" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/react/base-64-string" %}
### Configure JSON serialization options
@@ -716,14 +716,14 @@ The following code snippet demonstrates how to configure the serialization optio
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/save-as-json/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/save-as-json/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/save-as-json/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/save-as-json/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/save-as-json" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/react/save-as-json" %}
### Send and receive custom params from client to server
@@ -731,20 +731,20 @@ Passing the custom parameters from client to server by using [`beforeSave`](http
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs6/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs6/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs6/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs6/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs6/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs6/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs6/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs6/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/open-save-cs6" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/open-save-cs6" %}
Server side code snippets:
```csharp
@@ -761,20 +761,20 @@ You can add your own custom header to the save action in the Spreadsheet. For pr
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs7/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs7/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs7/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs7/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs7/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs7/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs7/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs7/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/open-save-cs7" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/open-save-cs7" %}
### Change the PDF orientation
@@ -787,20 +787,20 @@ The possible values are:
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs8/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs8/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs8/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs8/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs8/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs8/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/open-save-cs8/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/open-save-cs8/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/open-save-cs8" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/open-save-cs8" %}
### Supported file formats
@@ -817,20 +817,20 @@ To save the Spreadsheet document as an `xlsx, xls, csv, or pdf` file, by using [
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/save-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/save-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/save-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/save-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/save-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/save-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/save-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/save-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/save-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/save-cs1" %}
## Server Configuration
diff --git a/Document-Processing/Excel/Spreadsheet/React/print.md b/Document-Processing/Excel/Spreadsheet/React/print.md
index 88d8867be..737e1d7f7 100644
--- a/Document-Processing/Excel/Spreadsheet/React/print.md
+++ b/Document-Processing/Excel/Spreadsheet/React/print.md
@@ -31,14 +31,14 @@ The `printOptions` contain three properties, as described below.
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/print-cs2/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/print-cs2/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/print-cs2/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/print-cs2/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/print-cs2" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/print-cs2" %}
## Disable printing
@@ -48,14 +48,14 @@ The printing functionality in the Spreadsheet can be disabled by setting the [`a
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/print-cs3/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/print-cs3/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/print-cs3/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/print-cs3/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/print-cs3" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/print-cs3" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/React/protect-sheet.md b/Document-Processing/Excel/Spreadsheet/React/protect-sheet.md
index a819e3922..3abf9eb81 100644
--- a/Document-Processing/Excel/Spreadsheet/React/protect-sheet.md
+++ b/Document-Processing/Excel/Spreadsheet/React/protect-sheet.md
@@ -46,20 +46,20 @@ The following example shows `Protect Sheet` functionality in the Spreadsheet con
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/protect-sheet-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/protect-sheet-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/protect-sheet-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/protect-sheet-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/protect-sheet-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/protect-sheet-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/protect-sheet-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/protect-sheet-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/protect-sheet-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/protect-sheet-cs1" %}
### Limitations of Protect sheet
@@ -83,20 +83,20 @@ In protected spreadsheet, to make some particular cell or range of cells are edi
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/unlock-cells-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/unlock-cells-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/unlock-cells-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/unlock-cells-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/unlock-cells-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/unlock-cells-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/unlock-cells-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/unlock-cells-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/unlock-cells-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/unlock-cells-cs1" %}
## Make cells read-only without protecting worksheet
@@ -152,20 +152,20 @@ The following example demonstrates how to make rows, columns, and cells read-onl
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/readonly-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/readonly-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/readonly-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/readonly-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/readonly-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/readonly-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/readonly-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/readonly-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/readonly-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/react/readonly-cs1" %}
## Protect Workbook
@@ -181,39 +181,39 @@ The following example shows `Protect Workbook` by using the [`isProtected`](http
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/local-data-binding-cs3/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/local-data-binding-cs3/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/local-data-binding-cs3/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/local-data-binding-cs3/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/local-data-binding-cs3/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/local-data-binding-cs3/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/local-data-binding-cs3/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/local-data-binding-cs3/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/local-data-binding-cs3" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/local-data-binding-cs3" %}
The following example shows `Protect Workbook` by using the [`password`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/#password) property in the Spreadsheet control. To unprotect the workbook, click the unprotect workbook button in the data tab and provide the password as syncfusion® in the dialog box.
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/local-data-binding-cs4/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/local-data-binding-cs4/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/local-data-binding-cs4/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/local-data-binding-cs4/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/local-data-binding-cs4/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/local-data-binding-cs4/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/local-data-binding-cs4/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/local-data-binding-cs4/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/local-data-binding-cs4" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/local-data-binding-cs4" %}
## Unprotect Workbook
diff --git a/Document-Processing/Excel/Spreadsheet/React/ribbon.md b/Document-Processing/Excel/Spreadsheet/React/ribbon.md
index b32505552..a8dcf14d3 100644
--- a/Document-Processing/Excel/Spreadsheet/React/ribbon.md
+++ b/Document-Processing/Excel/Spreadsheet/React/ribbon.md
@@ -31,20 +31,20 @@ The following code example shows the usage of ribbon customization.
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/ribbon-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/ribbon-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/ribbon-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/ribbon-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/ribbon-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/ribbon-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/ribbon-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/ribbon-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/ribbon-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/ribbon-cs1" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/React/rows-and-columns.md b/Document-Processing/Excel/Spreadsheet/React/rows-and-columns.md
index 19c9f8abc..abcda41b9 100644
--- a/Document-Processing/Excel/Spreadsheet/React/rows-and-columns.md
+++ b/Document-Processing/Excel/Spreadsheet/React/rows-and-columns.md
@@ -30,20 +30,20 @@ The following code example shows the options for inserting rows in the spreadshe
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/insert-row-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/insert-row-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/insert-row-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/insert-row-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/insert-row-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/insert-row-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/insert-row-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/insert-row-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/insert-row-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/insert-row-cs1" %}
### Column
@@ -56,20 +56,20 @@ The following code example shows the options for inserting columns in the spread
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/insert-column-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/insert-column-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/insert-column-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/insert-column-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/insert-column-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/insert-column-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/insert-column-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/insert-column-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/insert-column-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/insert-column-cs1" %}
## Delete
@@ -84,20 +84,20 @@ The following code example shows the delete operation of rows and columns in the
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/delete-row-column-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/delete-row-column-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/delete-row-column-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/delete-row-column-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/delete-row-column-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/delete-row-column-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/delete-row-column-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/delete-row-column-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/delete-row-column-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/delete-row-column-cs1" %}
## Limitations of insert and delete
@@ -132,20 +132,20 @@ The following code example shows the hide/show rows and columns operation in the
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/show-hide-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/show-hide-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/show-hide-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/show-hide-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/show-hide-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/show-hide-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/show-hide-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/show-hide-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/show-hide-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/show-hide-cs1" %}
## Size
@@ -166,20 +166,20 @@ The following code example shows how to change the height for single/multiple ro
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/row-height-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/row-height-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/row-height-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/row-height-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/row-height-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/row-height-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/row-height-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/row-height-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/row-height-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/row-height-cs1" %}
### Column
@@ -196,20 +196,20 @@ The following code example shows how to change the width for single/multiple col
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/column-width-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/column-width-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/column-width-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/column-width-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/column-width-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/column-width-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/column-width-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/column-width-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/column-width-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/column-width-cs1" %}
## Changing text in column headers
@@ -219,14 +219,14 @@ The following code example shows how to change the text in the column headers.
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/column-header-change-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/column-header-change-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/column-header-change-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/column-header-change-cs1/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/column-header-change-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/react/column-header-change-cs1" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/React/scrolling.md b/Document-Processing/Excel/Spreadsheet/React/scrolling.md
index 5df80e8f9..814deacad 100644
--- a/Document-Processing/Excel/Spreadsheet/React/scrolling.md
+++ b/Document-Processing/Excel/Spreadsheet/React/scrolling.md
@@ -52,20 +52,20 @@ The following code example shows the finite scrolling with defined rows and colu
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/scrolling-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/scrolling-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/scrolling-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/scrolling-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/scrolling-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/scrolling-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/scrolling-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/scrolling-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/scrolling-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/scrolling-cs1" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/React/searching.md b/Document-Processing/Excel/Spreadsheet/React/searching.md
index 0de5e4491..b2304fb26 100644
--- a/Document-Processing/Excel/Spreadsheet/React/searching.md
+++ b/Document-Processing/Excel/Spreadsheet/React/searching.md
@@ -64,20 +64,20 @@ In the following sample, searching can be done by following ways:
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/searching-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/searching-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/searching-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/searching-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/searching-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/searching-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/searching-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/searching-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/searching-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/searching-cs1" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/React/selection.md b/Document-Processing/Excel/Spreadsheet/React/selection.md
index 159e1ea51..98e1eae43 100644
--- a/Document-Processing/Excel/Spreadsheet/React/selection.md
+++ b/Document-Processing/Excel/Spreadsheet/React/selection.md
@@ -48,20 +48,20 @@ The following sample shows the row selection in the spreadsheet, here selecting
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/selection-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/selection-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/selection-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/selection-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/selection-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/selection-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/selection-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/selection-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/selection-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/selection-cs1" %}
## Column selection
@@ -80,20 +80,20 @@ The following sample shows the column selection in the spreadsheet, here selecti
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/selection-cs2/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/selection-cs2/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/selection-cs2/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/selection-cs2/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/selection-cs2/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/selection-cs2/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/selection-cs2/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/selection-cs2/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/selection-cs2" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/selection-cs2" %}
## Get selected cell values
@@ -103,20 +103,20 @@ Below is a code example demonstrating how to retrieve the selected cell values a
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/selected-cell-values/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/selected-cell-values/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/selected-cell-values/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/selected-cell-values/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/selected-cell-values/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/selected-cell-values/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/selected-cell-values/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/selected-cell-values/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/selected-cell-values" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/react/selected-cell-values" %}
## Remove selection
@@ -124,20 +124,20 @@ The following sample shows, how to remove the selection in the spreadsheet. Here
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/selection-cs3/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/selection-cs3/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/selection-cs3/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/selection-cs3/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/selection-cs3/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/selection-cs3/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/selection-cs3/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/selection-cs3/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/selection-cs3" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/selection-cs3" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/React/sort.md b/Document-Processing/Excel/Spreadsheet/React/sort.md
index 900ea6689..8408829f6 100644
--- a/Document-Processing/Excel/Spreadsheet/React/sort.md
+++ b/Document-Processing/Excel/Spreadsheet/React/sort.md
@@ -37,20 +37,20 @@ The following code example shows `sort` functionality in the Spreadsheet control
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/sort-by-cell-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/sort-by-cell-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/sort-by-cell-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/sort-by-cell-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/sort-by-cell-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/sort-by-cell-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/sort-by-cell-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/sort-by-cell-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/sort-by-cell-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/sort-by-cell-cs1" %}
## Data contains header
@@ -117,20 +117,20 @@ The multi-column sorting can also be performed manually by passing sort options
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/passing-sort-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/passing-sort-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/passing-sort-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/passing-sort-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/passing-sort-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/passing-sort-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/passing-sort-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/passing-sort-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/passing-sort-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/passing-sort-cs1" %}
## Custom sort comparer
@@ -150,20 +150,20 @@ In the following demo, the `Trustworthiness` column is sorted based on the custo
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/custom-sort-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/custom-sort-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/custom-sort-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/custom-sort-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/custom-sort-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/custom-sort-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/custom-sort-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/custom-sort-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/custom-sort-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/custom-sort-cs1" %}
## Known error validations
diff --git a/Document-Processing/Excel/Spreadsheet/React/template.md b/Document-Processing/Excel/Spreadsheet/React/template.md
index 5868a5bd5..eb51ae2b8 100644
--- a/Document-Processing/Excel/Spreadsheet/React/template.md
+++ b/Document-Processing/Excel/Spreadsheet/React/template.md
@@ -17,14 +17,14 @@ Sample link: [`Cell template`](https://document.syncfusion.com/demos/spreadsheet
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/template-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/template-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/template-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/template-cs1/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/template-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/template-cs1" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/React/undo-redo.md b/Document-Processing/Excel/Spreadsheet/React/undo-redo.md
index d79207a67..f1be15396 100644
--- a/Document-Processing/Excel/Spreadsheet/React/undo-redo.md
+++ b/Document-Processing/Excel/Spreadsheet/React/undo-redo.md
@@ -39,20 +39,20 @@ The following code example shows `How to update and customize your own actions f
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/undo-redo-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/undo-redo-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/undo-redo-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/undo-redo-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/undo-redo-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/undo-redo-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/undo-redo-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/undo-redo-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/undo-redo-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/undo-redo-cs1" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/React/worksheet.md b/Document-Processing/Excel/Spreadsheet/React/worksheet.md
index d285c5b0b..a6385fdb4 100644
--- a/Document-Processing/Excel/Spreadsheet/React/worksheet.md
+++ b/Document-Processing/Excel/Spreadsheet/React/worksheet.md
@@ -23,20 +23,20 @@ The following code example shows the insert sheet operation in spreadsheet.
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/insert-sheet-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/insert-sheet-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/insert-sheet-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/insert-sheet-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/insert-sheet-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/insert-sheet-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/insert-sheet-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/insert-sheet-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/insert-sheet-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/insert-sheet-cs1" %}
### Insert a sheet programmatically and make it active sheet
@@ -46,14 +46,14 @@ The following code example shows how to insert a sheet programmatically and make
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/insert-sheet-change-active-sheet-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/insert-sheet-change-active-sheet-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/insert-sheet-change-active-sheet-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/insert-sheet-change-active-sheet-cs1/app/app.tsx %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/insert-sheet-change-active-sheet-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/react/insert-sheet-change-active-sheet-cs1" %}
## Delete sheet
@@ -86,20 +86,20 @@ The following code example shows the headers and gridlines operation in spreadsh
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/headers-gridlines-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/headers-gridlines-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/headers-gridlines-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/headers-gridlines-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/headers-gridlines-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/headers-gridlines-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/headers-gridlines-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/headers-gridlines-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/headers-gridlines-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/headers-gridlines-cs1" %}
## Sheet visibility
@@ -117,20 +117,20 @@ The following code example shows the three types of sheet visibility state.
{% tabs %}
{% highlight js tabtitle="app.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/sheet-visiblity-cs1/app/app.jsx %}
+{% include code-snippet/spreadsheet/react/sheet-visiblity-cs1/app/app.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="app.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/sheet-visiblity-cs1/app/app.tsx %}
+{% include code-snippet/spreadsheet/react/sheet-visiblity-cs1/app/app.tsx %}
{% endhighlight %}
{% highlight js tabtitle="datasource.jsx" %}
-{% include code-snippet/excel/spreadsheet/react/sheet-visiblity-cs1/app/datasource.jsx %}
+{% include code-snippet/spreadsheet/react/sheet-visiblity-cs1/app/datasource.jsx %}
{% endhighlight %}
{% highlight ts tabtitle="datasource.tsx" %}
-{% include code-snippet/excel/spreadsheet/react/sheet-visiblity-cs1/app/datasource.tsx %}
+{% include code-snippet/spreadsheet/react/sheet-visiblity-cs1/app/datasource.tsx %}
{% endhighlight %}
{% endtabs %}
- {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/react/sheet-visiblity-cs1" %}
+ {% previewsample "/document-processing/code-snippet/spreadsheet/react/sheet-visiblity-cs1" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/cell-range.md b/Document-Processing/Excel/Spreadsheet/Vue/cell-range.md
index 0c80e739b..51d11062d 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/cell-range.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/cell-range.md
@@ -25,14 +25,14 @@ The following code example shows the wrap text functionality in spreadsheet.
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/wrap-text-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/wrap-text-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/wrap-text-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/wrap-text-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/wrap-text-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/wrap-text-cs1" %}
### Limitations of Wrap text
@@ -64,14 +64,14 @@ The following code example shows the merge cells operation in spreadsheet.
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/merge-cells-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/merge-cells-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/merge-cells-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/merge-cells-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/merge-cells-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/merge-cells-cs1" %}
### Limitations of Merge
@@ -124,14 +124,14 @@ You can clear the highlighted invalid data by using the following ways,
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/number-format-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/number-format-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/number-format-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/number-format-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/number-format-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/number-format-cs1" %}
### Custom Data validation
@@ -152,14 +152,14 @@ The following code example demonstrates how to add custom data validation with a
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/data-validation-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/data-validation-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/data-validation-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/data-validation-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/data-validation-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/data-validation-cs1" %}
### Limitations of Data validation
@@ -196,14 +196,14 @@ Clear the cell contents and formats in the Spreadsheet document by using the [cl
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/clear-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/clear-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/clear-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/clear-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/clear-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/clear-cs1" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/clipboard.md b/Document-Processing/Excel/Spreadsheet/Vue/clipboard.md
index 43f0356e1..3c293869b 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/clipboard.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/clipboard.md
@@ -61,14 +61,14 @@ Paste can be done in one of the following ways.
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/clipboard-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/clipboard-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/clipboard-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/clipboard-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/clipboard-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/clipboard-cs1" %}
## Prevent the paste functionality
@@ -76,14 +76,14 @@ The following example shows, how to prevent the paste action in spreadsheet. In
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/clipboard-cs2/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/clipboard-cs2/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/clipboard-cs2/app.vue %}
+{% include code-snippet/spreadsheet/vue/clipboard-cs2/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/clipboard-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/clipboard-cs2" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/context-menu.md b/Document-Processing/Excel/Spreadsheet/Vue/context-menu.md
index 093d93563..170d2c1d8 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/context-menu.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/context-menu.md
@@ -70,14 +70,14 @@ In this demo, Custom Item is added after the Paste item in the context menu.
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/contextmenu/addContextMenu-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/contextmenu/addContextMenu-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/contextmenu/addContextMenu-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/contextmenu/addContextMenu-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/contextmenu/addContextMenu-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/contextmenu/addContextMenu-cs1" %}
### Remove Context Menu Items
@@ -87,14 +87,14 @@ In this demo, Insert Column item has been removed from the row/column header con
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/contextmenu/addContextMenu-cs2/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/contextmenu/addContextMenu-cs2/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/contextmenu/addContextMenu-cs2/app.vue %}
+{% include code-snippet/spreadsheet/vue/contextmenu/addContextMenu-cs2/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/contextmenu/addContextMenu-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/contextmenu/addContextMenu-cs2" %}
### Enable/Disable Context Menu Items
@@ -104,14 +104,14 @@ In this demo, Rename item is disabled in the pager context menu.
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/contextmenu/addContextMenu-cs3/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/contextmenu/addContextMenu-cs3/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/contextmenu/addContextMenu-cs3/app.vue %}
+{% include code-snippet/spreadsheet/vue/contextmenu/addContextMenu-cs3/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/contextmenu/addContextMenu-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/contextmenu/addContextMenu-cs3" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/data-binding.md b/Document-Processing/Excel/Spreadsheet/Vue/data-binding.md
index 819e5dad9..fb7ec3c35 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/data-binding.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/data-binding.md
@@ -21,14 +21,14 @@ Refer to the following code example for local data binding.
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/local-data-binding-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/local-data-binding-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/local-data-binding-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/local-data-binding-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/local-data-binding-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/local-data-binding-cs1" %}
> The local data source can also be provided as an instance of the [`DataManager`]. By default, [`DataManager`] uses [`JsonAdaptor`] for local data-binding.
@@ -42,14 +42,14 @@ The following code example demonstrates how to customize the mapping of column d
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/field-mapping-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/field-mapping-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/field-mapping-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/field-mapping-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/field-mapping-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/field-mapping-cs1" %}
## Remote data
@@ -59,14 +59,14 @@ Refer to the following code example for remote data binding.
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/remote-data-binding-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/remote-data-binding-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/remote-data-binding-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/remote-data-binding-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/remote-data-binding-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/remote-data-binding-cs1" %}
> By default, `DataManager` uses **ODataAdaptor** for remote data-binding.
@@ -76,14 +76,14 @@ Refer to the following code example for remote data binding.
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/remote-data-binding-cs2/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/remote-data-binding-cs2/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/remote-data-binding-cs2/app.vue %}
+{% include code-snippet/spreadsheet/vue/remote-data-binding-cs2/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/remote-data-binding-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/remote-data-binding-cs2" %}
### Web API
@@ -91,14 +91,14 @@ You can use WebApiAdaptor to bind spreadsheet with Web API created using OData e
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/remote-data-binding-cs3/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/remote-data-binding-cs3/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/remote-data-binding-cs3/app.vue %}
+{% include code-snippet/spreadsheet/vue/remote-data-binding-cs3/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/remote-data-binding-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/remote-data-binding-cs3" %}
## Cell data binding
@@ -109,14 +109,14 @@ Refer to the following code example for cell data binding.
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/cell-data-binding-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/cell-data-binding-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/cell-data-binding-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/cell-data-binding-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/cell-data-binding-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/cell-data-binding-cs1" %}
> The cell data binding also supports formula, style, number format, and more.
@@ -138,14 +138,14 @@ The following table defines the arguments of the `dataSourceChanged` event.
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/dynamic-data-binding-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/dynamic-data-binding-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/dynamic-data-binding-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/dynamic-data-binding-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/dynamic-data-binding-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/dynamic-data-binding-cs1" %}
## Dynamic data binding using updateRange method
@@ -157,14 +157,14 @@ The following code example demonstrates how to dynamically update data using the
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/dynamic-data-binding-cs2/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/dynamic-data-binding-cs2/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/dynamic-data-binding-cs2/app.vue %}
+{% include code-snippet/spreadsheet/vue/dynamic-data-binding-cs2/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/dynamic-data-binding-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/dynamic-data-binding-cs2" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/editing.md b/Document-Processing/Excel/Spreadsheet/Vue/editing.md
index 40c6205ea..4c9263a13 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/editing.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/editing.md
@@ -40,14 +40,14 @@ The following sample shows how to prevent the editing and cell save. Here `E` co
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/editing-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/editing-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/editing-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/editing-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/editing-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/editing-cs1" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/filter.md b/Document-Processing/Excel/Spreadsheet/Vue/filter.md
index 9c0e1ed1f..79e37a72f 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/filter.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/filter.md
@@ -37,14 +37,14 @@ The following code example shows `filter` functionality in the Spreadsheet contr
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/filter-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/filter-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/filter-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/filter-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/filter-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/filter-cs1" %}
## Filter by cell value
@@ -86,14 +86,14 @@ The following code example shows how to get the filtered rows.
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/filter-cs2/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/filter-cs2/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/filter-cs2/app.vue %}
+{% include code-snippet/spreadsheet/vue/filter-cs2/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/filter-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/filter-cs2" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/formatting.md b/Document-Processing/Excel/Spreadsheet/Vue/formatting.md
index 441ff1f1f..1f99b915a 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/formatting.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/formatting.md
@@ -41,14 +41,14 @@ The following code example shows the number formatting in cell data.
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/number-format-cs2/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/number-format-cs2/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/number-format-cs2/app.vue %}
+{% include code-snippet/spreadsheet/vue/number-format-cs2/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/number-format-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/number-format-cs2" %}
### Limitations of Number Formatting
@@ -99,14 +99,14 @@ The following code example demonstrates how to configure culture-based formats f
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/globalization-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/globalization-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/globalization-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/globalization-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/globalization-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/globalization-cs1" %}
## Text and cell formatting
@@ -169,14 +169,14 @@ The following code example shows the style formatting in text and cells of the s
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/cell-format-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/cell-format-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/cell-format-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/cell-format-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/cell-format-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/cell-format-cs1" %}
### Limitations of Formatting
@@ -266,14 +266,14 @@ You can clear the defined rules by using one of the following ways,
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/conditional-formatting-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/conditional-formatting-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/conditional-formatting-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/conditional-formatting-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/conditional-formatting-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/conditional-formatting-cs1" %}
### Limitations of Conditional formatting
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/formulas.md b/Document-Processing/Excel/Spreadsheet/Vue/formulas.md
index 454060454..7e66c2c03 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/formulas.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/formulas.md
@@ -32,14 +32,14 @@ In the example below, the Spreadsheet component is rendered with the `German cul
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/formula-cs3/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/formula-cs3/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/formula-cs3/app.vue %}
+{% include code-snippet/spreadsheet/vue/formula-cs3/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/formula-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/formula-cs3" %}
## Create User Defined Functions / Custom Functions
@@ -51,14 +51,14 @@ The following code example shows an unsupported formula in the spreadsheet.
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/formula-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/formula-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/formula-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/formula-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/formula-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/formula-cs1" %}
Second, if you want to directly compute any formula or expression, you can use the [computeExpression](https://ej2.syncfusion.com/vue/documentation/api/spreadsheet/#computeexpression) method. This method will work for both built-in and used-defined/custom formula.
@@ -66,14 +66,14 @@ The following code example shows how to use `computeExpression` method in the sp
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/formula-cs2/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/formula-cs2/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/formula-cs2/app.vue %}
+{% include code-snippet/spreadsheet/vue/formula-cs2/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/formula-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/formula-cs2" %}
## Formula bar
@@ -92,14 +92,14 @@ The following code example shows the usage of named ranges support.
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/defined-name-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/defined-name-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/defined-name-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/defined-name-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/defined-name-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/defined-name-cs1" %}
## Calculation Mode
@@ -120,14 +120,14 @@ The following code example demonstrates how to set the Automatic calculation mod
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/calculation-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/calculation-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/calculation-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/calculation-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/calculation-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/calculation-cs1" %}
### Manual Mode
@@ -142,14 +142,14 @@ The following code example demonstrates how to set the Manual calculation mode i
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/calculation-cs2/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/calculation-cs2/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/calculation-cs2/app.vue %}
+{% include code-snippet/spreadsheet/vue/calculation-cs2/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/calculation-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/calculation-cs2" %}
## Supported Formulas
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/freeze-pane.md b/Document-Processing/Excel/Spreadsheet/Vue/freeze-pane.md
index 43d9e9896..e5ca9b250 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/freeze-pane.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/freeze-pane.md
@@ -46,14 +46,14 @@ In this demo, the frozenColumns is set as ‘2’, and the frozenRows is set as
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/freezepane-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/freezepane-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/freezepane-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/freezepane-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/freezepane-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/freezepane-cs1" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/getting-started.md b/Document-Processing/Excel/Spreadsheet/Vue/getting-started.md
index d34684221..daf90cb54 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/getting-started.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/getting-started.md
@@ -141,10 +141,10 @@ Here is the summarized code for the above steps in the **src/App.vue** file:
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/getting-started-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/getting-started-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/getting-started-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/getting-started-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
@@ -162,7 +162,7 @@ or
yarn run serve
```
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/getting-started-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/getting-started-cs1" %}
> You can refer to our [Vue Spreadsheet](https://www.syncfusion.com/spreadsheet-editor-sdk/vue-spreadsheet-editor) feature tour page for its groundbreaking feature representations. You can also explore our [Vue Spreadsheet example](https://document.syncfusion.com/demos/spreadsheet-editor/vue/#/tailwind3/spreadsheet/default.html) that shows you how to present and manipulate data.
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/global-local.md b/Document-Processing/Excel/Spreadsheet/Vue/global-local.md
index 743d3eb06..7c8b00fc6 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/global-local.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/global-local.md
@@ -383,14 +383,14 @@ The following example demonstrates the Spreadsheet in `French` culture. In the b
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/local-data-binding-cs2/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/local-data-binding-cs2/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/local-data-binding-cs2/app.vue %}
+{% include code-snippet/spreadsheet/vue/local-data-binding-cs2/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/local-data-binding-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/local-data-binding-cs2" %}
## Internationalization
@@ -611,14 +611,14 @@ RTL provides an option to switch the text direction and layout of the Spreadshee
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/local-data-binding-cs3/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/local-data-binding-cs3/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/local-data-binding-cs3/app.vue %}
+{% include code-snippet/spreadsheet/vue/local-data-binding-cs3/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/local-data-binding-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/local-data-binding-cs3" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/how-to/change-active-sheet.md b/Document-Processing/Excel/Spreadsheet/Vue/how-to/change-active-sheet.md
index d4e4bfc4a..9c25db329 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/how-to/change-active-sheet.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/how-to/change-active-sheet.md
@@ -15,11 +15,11 @@ The following code example shows how to set the active sheet when importing an E
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/change-active-sheet-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/change-active-sheet-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/change-active-sheet-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/change-active-sheet-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/change-active-sheet-cs1" %}
\ No newline at end of file
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/change-active-sheet-cs1" %}
\ No newline at end of file
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/how-to/identify-the-context-menu-opened.md b/Document-Processing/Excel/Spreadsheet/Vue/how-to/identify-the-context-menu-opened.md
index 402f6ae00..172541173 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/how-to/identify-the-context-menu-opened.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/how-to/identify-the-context-menu-opened.md
@@ -24,11 +24,11 @@ The following code example shows how to identify the context menu opened.
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/find-target-context-menu/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/find-target-context-menu/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/find-target-context-menu/app.vue %}
+{% include code-snippet/spreadsheet/vue/find-target-context-menu/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/find-target-context-menu" %}
\ No newline at end of file
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/find-target-context-menu" %}
\ No newline at end of file
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/illustrations.md b/Document-Processing/Excel/Spreadsheet/Vue/illustrations.md
index d939e2536..916d6a39a 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/illustrations.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/illustrations.md
@@ -70,14 +70,14 @@ Image feature allows you to view and insert an image in a spreadsheet, and you c
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/link-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/link-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/link-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/link-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/link-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/link-cs1" %}
### Limitations of Image
@@ -127,14 +127,14 @@ The available arguments in the `ChartModel` are:
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/chart-cs2/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/chart-cs2/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/chart-cs2/app.vue %}
+{% include code-snippet/spreadsheet/vue/chart-cs2/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/chart-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/chart-cs2" %}
### Delete Chart
@@ -157,14 +157,14 @@ Chart feature allows you to view and insert a chart in a spreadsheet, and you ca
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/chart-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/chart-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/chart-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/chart-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/chart-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/chart-cs1" %}
#### Customization of line chart markers
@@ -172,14 +172,14 @@ Using the [`actionBegin`](https://ej2.syncfusion.com/vue/documentation/api/sprea
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/chart-cs3/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/chart-cs3/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/chart-cs3/app.vue %}
+{% include code-snippet/spreadsheet/vue/chart-cs3/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/chart-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/chart-cs3" %}
### Limitations of Chart
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/link.md b/Document-Processing/Excel/Spreadsheet/Vue/link.md
index b461f3284..9a4fe16a1 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/link.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/link.md
@@ -55,14 +55,14 @@ There is an event named `beforeHyperlinkClick` which triggers only on clicking h
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/link-cs2/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/link-cs2/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/link-cs2/app.vue %}
+{% include code-snippet/spreadsheet/vue/link-cs2/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/link-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/link-cs2" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/notes.md b/Document-Processing/Excel/Spreadsheet/Vue/notes.md
index 4bc5030bb..ac3edef37 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/notes.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/notes.md
@@ -19,14 +19,14 @@ In the below example, you can add, edit, save, and delete notes.
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/note-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/note-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/note-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/note-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/note-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/note-cs1" %}
## Adding a note
@@ -71,14 +71,14 @@ In the below example, the note functionality is disabled in the Spreadsheet.
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/note-cs2/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/note-cs2/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/note-cs2/app.vue %}
+{% include code-snippet/spreadsheet/vue/note-cs2/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/note-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/note-cs2" %}
## Integrating notes during initial loading and using cell data binding
@@ -86,14 +86,14 @@ The notes can be added initially when the Spreadsheet loads using cell data bind
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/note-cs3/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/note-cs3/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/note-cs3/app.vue %}
+{% include code-snippet/spreadsheet/vue/note-cs3/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/note-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/note-cs3" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/open-save.md b/Document-Processing/Excel/Spreadsheet/Vue/open-save.md
index 4a3190caa..84cd40090 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/open-save.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/open-save.md
@@ -23,14 +23,14 @@ The following sample shows the `Open` option by using the [`openUrl`](https://ej
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/open-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/open-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/open-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/open-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/open-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/open-cs1" %}
Please find the below table for the beforeOpen event arguments.
@@ -51,14 +51,14 @@ The following code example shows how to import an excel document using file uplo
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/open-uploader-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/open-uploader-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/open-uploader-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/open-uploader-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/open-uploader-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/open-uploader-cs1" %}
### Open an external URL excel file while initial load
@@ -66,14 +66,14 @@ You can achieve to access the remote excel file by using the [`created`](https:/
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/open-cs2/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/open-cs2/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/open-cs2/app.vue %}
+{% include code-snippet/spreadsheet/vue/open-cs2/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/open-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/open-cs2" %}
### Open an excel file from blob data
@@ -83,14 +83,14 @@ Please find the code to fetch the blob data and load it into the Spreadsheet com
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/open-from-blobdata-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/open-from-blobdata-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/open-from-blobdata-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/open-from-blobdata-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/open-from-blobdata-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/open-from-blobdata-cs1" %}
### Open an Excel file located on a server
@@ -362,14 +362,14 @@ The following code example shows how to save the spreadsheet data as base64 stri
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/base-64-string/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/base-64-string/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/base-64-string/app.vue %}
+{% include code-snippet/spreadsheet/vue/base-64-string/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/base-64-string" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/base-64-string" %}
### Open excel file into a read-only mode
@@ -377,14 +377,14 @@ You can open excel file into a read-only mode by using the [`openComplete`](http
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/open-readonly-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/open-readonly-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/open-readonly-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/open-readonly-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/open-readonly-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/open-readonly-cs1" %}
### Configure JSON deserialization options
@@ -414,14 +414,14 @@ The following code snippet demonstrates how to configure the deserialization opt
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/open-from-json/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/open-from-json/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/open-from-json/app.vue %}
+{% include code-snippet/spreadsheet/vue/open-from-json/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/open-from-json" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/open-from-json" %}
### Improving Excel file open performance with parsing options
@@ -597,14 +597,14 @@ You can add your own custom header to the open action in the Spreadsheet. For pr
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/custom-header-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/custom-header-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/custom-header-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/custom-header-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/custom-header-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/custom-header-cs1" %}
### External workbook confirmation dialog
@@ -646,14 +646,14 @@ The following sample shows the `Save` option by using the [`saveUrl`](https://ej
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/open-save-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/open-save-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/open-save-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/open-save-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/open-save-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/open-save-cs1" %}
Please find the below table for the beforeSave event arguments.
@@ -679,14 +679,14 @@ Please find below the code to retrieve blob data from the Spreadsheet component
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/save-as-blobdata-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/save-as-blobdata-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/save-as-blobdata-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/save-as-blobdata-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/save-as-blobdata-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/save-as-blobdata-cs1" %}
### Save an Excel file to a server
@@ -1011,14 +1011,14 @@ The following code example shows how to save the spreadsheet data as base64 stri
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/base-64-string/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/base-64-string/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/base-64-string/app.vue %}
+{% include code-snippet/spreadsheet/vue/base-64-string/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/base-64-string" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/base-64-string" %}
### Configure JSON serialization options
@@ -1048,14 +1048,14 @@ The following code snippet demonstrates how to configure the serialization optio
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/save-as-json/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/save-as-json/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/save-as-json/app.vue %}
+{% include code-snippet/spreadsheet/vue/save-as-json/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/save-as-json" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/save-as-json" %}
### Send and receive custom params from client to server
@@ -1063,14 +1063,14 @@ Passing the custom parameters from client to server by using [`beforeSave`](http
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/open-save-cs2/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/open-save-cs2/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/open-save-cs2/app.vue %}
+{% include code-snippet/spreadsheet/vue/open-save-cs2/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/open-save-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/open-save-cs2" %}
Server side code snippets:
@@ -1089,14 +1089,14 @@ You can add your own custom header to the save action in the Spreadsheet. For pr
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/custom-header-cs2/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/custom-header-cs2/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/custom-header-cs2/app.vue %}
+{% include code-snippet/spreadsheet/vue/custom-header-cs2/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/custom-header-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/custom-header-cs2" %}
### Change the PDF orientation
@@ -1109,14 +1109,14 @@ The possible values are:
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/open-save-cs3/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/open-save-cs3/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/open-save-cs3/app.vue %}
+{% include code-snippet/spreadsheet/vue/open-save-cs3/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/open-save-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/open-save-cs3" %}
### Supported file formats
@@ -1133,14 +1133,14 @@ To save the Spreadsheet document as an `xlsx, xls, csv, or pdf` file, by using [
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/save-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/save-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/save-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/save-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/save-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/save-cs1" %}
## Server Configuration
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/print.md b/Document-Processing/Excel/Spreadsheet/Vue/print.md
index 2fa45ef5d..71bc684f4 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/print.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/print.md
@@ -31,14 +31,14 @@ The `printOptions` contain three properties, as described below.
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/print-cs2/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/print-cs2/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/print-cs2/app.vue %}
+{% include code-snippet/spreadsheet/vue/print-cs2/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/print-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/print-cs2" %}
## Disable printing
@@ -48,14 +48,14 @@ The printing functionality in the Spreadsheet can be disabled by setting the [`a
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/print-cs3/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/print-cs3/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/print-cs3/app.vue %}
+{% include code-snippet/spreadsheet/vue/print-cs3/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/print-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/print-cs3" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/protect-sheet.md b/Document-Processing/Excel/Spreadsheet/Vue/protect-sheet.md
index 1f075bc01..5fe754c14 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/protect-sheet.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/protect-sheet.md
@@ -46,14 +46,14 @@ The following example shows `Protect Sheet` functionality in the Spreadsheet con
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/protect-sheet-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/protect-sheet-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/protect-sheet-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/protect-sheet-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/protect-sheet-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/protect-sheet-cs1" %}
## Limitations of Protect Sheet
@@ -77,14 +77,14 @@ In protected spreadsheet, to make some particular cell or range of cells are edi
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/lock-cells-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/lock-cells-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/lock-cells-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/lock-cells-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/lock-cells-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/lock-cells-cs1" %}
## Make cells read-only without protecting worksheet
@@ -137,14 +137,14 @@ The following example demonstrates how to make rows, columns, and cells read-onl
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/readonly-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/readonly-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/readonly-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/readonly-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/readonly-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/readonly-cs1" %}
## Protect Workbook
@@ -162,27 +162,27 @@ The following example shows `Protect Workbook` by using the [`isProtected`](http
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/local-data-binding-cs4/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/local-data-binding-cs4/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/local-data-binding-cs4/app.vue %}
+{% include code-snippet/spreadsheet/vue/local-data-binding-cs4/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/local-data-binding-cs4" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/local-data-binding-cs4" %}
The following example shows `Protect Workbook` by using the [`password`](https://ej2.syncfusion.com/vue/documentation/api/spreadsheet/#password) property in the Spreadsheet control. To unprotect the workbook, click the unprotect workbook button in the data tab and provide the password as syncfusion® in the dialog box.
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/local-data-binding-cs5/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/local-data-binding-cs5/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/local-data-binding-cs5/app.vue %}
+{% include code-snippet/spreadsheet/vue/local-data-binding-cs5/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/local-data-binding-cs5" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/local-data-binding-cs5" %}
## Unprotect Workbook
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/ribbon.md b/Document-Processing/Excel/Spreadsheet/Vue/ribbon.md
index 9e8130a5a..09e6dbce8 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/ribbon.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/ribbon.md
@@ -31,14 +31,14 @@ The following code example shows the usage of ribbon customization.
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/ribbon-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/ribbon-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/ribbon-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/ribbon-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/ribbon-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/ribbon-cs1" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/rows-and-columns.md b/Document-Processing/Excel/Spreadsheet/Vue/rows-and-columns.md
index 2329615b5..e941fa51b 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/rows-and-columns.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/rows-and-columns.md
@@ -30,14 +30,14 @@ The following code example shows the options for inserting rows in the spreadshe
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/insert-row-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/insert-row-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/insert-row-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/insert-row-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/insert-row-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/insert-row-cs1" %}
### Column
@@ -50,14 +50,14 @@ The following code example shows the options for inserting columns in the spread
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/insert-column-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/insert-column-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/insert-column-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/insert-column-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/insert-column-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/insert-column-cs1" %}
## Delete
@@ -72,14 +72,14 @@ The following code example shows the delete operation of rows and columns in the
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/delete-row-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/delete-row-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/delete-row-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/delete-row-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/delete-row-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/delete-row-cs1" %}
## Limitations of insert and delete
@@ -114,14 +114,14 @@ The following code example shows the hide/show rows and columns operation in the
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/show-hide-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/show-hide-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/show-hide-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/show-hide-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/show-hide-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/show-hide-cs1" %}
## Size
@@ -142,14 +142,14 @@ The following code example shows how to change the height for single/multiple ro
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/row-height-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/row-height-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/row-height-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/row-height-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/row-height-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/row-height-cs1" %}
### Column
@@ -166,14 +166,14 @@ The following code example shows how to change the width for single/multiple col
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/column-width-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/column-width-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/column-width-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/column-width-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/column-width-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/column-width-cs1" %}
## Changing text in column headers
@@ -183,14 +183,14 @@ The following code example shows how to change the text in the column headers.
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/column-header-change-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/column-header-change-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/column-header-change-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/column-header-change-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/column-header-change-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/column-header-change-cs1" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/scrolling.md b/Document-Processing/Excel/Spreadsheet/Vue/scrolling.md
index 84e8eb6d4..ea56c3964 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/scrolling.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/scrolling.md
@@ -52,14 +52,14 @@ The following code example shows the finite scrolling with defined rows and colu
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/scrolling-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/scrolling-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/scrolling-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/scrolling-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/scrolling-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/scrolling-cs1" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/searching.md b/Document-Processing/Excel/Spreadsheet/Vue/searching.md
index b24953ac0..9b8ac3ce4 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/searching.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/searching.md
@@ -64,14 +64,14 @@ Go to feature is used to navigate to a specific cell address in the sheet or wor
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/searching-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/searching-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/searching-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/searching-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/searching-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/searching-cs1" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/selection.md b/Document-Processing/Excel/Spreadsheet/Vue/selection.md
index fdf17c588..b93f1b8ed 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/selection.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/selection.md
@@ -48,14 +48,14 @@ The following sample shows the row selection in the spreadsheet, here selecting
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/selection-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/selection-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/selection-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/selection-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/selection-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/selection-cs1" %}
## Column selection
@@ -74,14 +74,14 @@ The following sample shows the column selection in the spreadsheet, here selecti
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/selection-cs2/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/selection-cs2/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/selection-cs2/app.vue %}
+{% include code-snippet/spreadsheet/vue/selection-cs2/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/selection-cs2" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/selection-cs2" %}
## Get selected cell values
@@ -91,14 +91,14 @@ Below is a code example demonstrating how to retrieve the selected cell values a
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/selected-cell-values/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/selected-cell-values/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/selected-cell-values/app.vue %}
+{% include code-snippet/spreadsheet/vue/selected-cell-values/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/selected-cell-values" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/selected-cell-values" %}
## Remove Selection
@@ -106,14 +106,14 @@ The following sample shows, how to remove the selection in the spreadsheet. Here
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/selection-cs3/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/selection-cs3/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/selection-cs3/app.vue %}
+{% include code-snippet/spreadsheet/vue/selection-cs3/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/selection-cs3" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/selection-cs3" %}
## Limitations
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/sort.md b/Document-Processing/Excel/Spreadsheet/Vue/sort.md
index 89d34a374..f07ec03ab 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/sort.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/sort.md
@@ -37,14 +37,14 @@ The following code example shows `Sort` functionality in the Spreadsheet control
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/sort-by-cell-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/sort-by-cell-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/sort-by-cell-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/sort-by-cell-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/sort-by-cell-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/sort-by-cell-cs1" %}
## Data contains header
@@ -110,14 +110,14 @@ The multi-column sorting can also be performed manually by passing sort options
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/passing-sort-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/passing-sort-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/passing-sort-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/passing-sort-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/passing-sort-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/passing-sort-cs1" %}
## Custom sort comparer
@@ -137,14 +137,14 @@ In the following demo, the `Trustworthiness` column is sorted based on the custo
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/custom-sort-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/custom-sort-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/custom-sort-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/custom-sort-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/custom-sort-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/custom-sort-cs1" %}
## Known error validations
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/undo-redo.md b/Document-Processing/Excel/Spreadsheet/Vue/undo-redo.md
index f03a22216..d144e1066 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/undo-redo.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/undo-redo.md
@@ -39,14 +39,14 @@ The following code example shows `How to update and customize your own actions f
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/undo-redo-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/undo-redo-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/undo-redo-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/undo-redo-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/undo-redo-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/undo-redo-cs1" %}
## Note
diff --git a/Document-Processing/Excel/Spreadsheet/Vue/worksheet.md b/Document-Processing/Excel/Spreadsheet/Vue/worksheet.md
index 8a79188a9..b2c35b78c 100644
--- a/Document-Processing/Excel/Spreadsheet/Vue/worksheet.md
+++ b/Document-Processing/Excel/Spreadsheet/Vue/worksheet.md
@@ -23,14 +23,14 @@ The following code example shows the insert sheet operation in spreadsheet.
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/insert-sheet-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/insert-sheet-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/insert-sheet-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/insert-sheet-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/insert-sheet-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/insert-sheet-cs1" %}
### Insert a sheet programmatically and make it active sheet
@@ -40,14 +40,14 @@ The following code example shows how to insert a sheet programmatically and make
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/insert-sheet-change-active-sheet-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/insert-sheet-change-active-sheet-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/insert-sheet-change-active-sheet-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/insert-sheet-change-active-sheet-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/insert-sheet-change-active-sheet-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/insert-sheet-change-active-sheet-cs1" %}
## Delete sheet
@@ -80,14 +80,14 @@ The following code example shows the headers and gridlines operation in spreadsh
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/header-gridlines-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/header-gridlines-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/header-gridlines-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/header-gridlines-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/header-gridlines-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/header-gridlines-cs1" %}
## Sheet visibility
@@ -105,14 +105,14 @@ The following code example shows the three types of sheet visibility state.
{% tabs %}
{% highlight html tabtitle="Composition API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/sheet-visiblity-cs1/app-composition.vue %}
+{% include code-snippet/spreadsheet/vue/sheet-visiblity-cs1/app-composition.vue %}
{% endhighlight %}
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
-{% include code-snippet/excel/spreadsheet/vue/sheet-visiblity-cs1/app.vue %}
+{% include code-snippet/spreadsheet/vue/sheet-visiblity-cs1/app.vue %}
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/vue/sheet-visiblity-cs1" %}
+{% previewsample "/document-processing/code-snippet/spreadsheet/vue/sheet-visiblity-cs1" %}
## Note
diff --git a/Document-Processing/PDF/PDF-Viewer/angular/formdesigner/programmatically-work-with-form-field.md b/Document-Processing/PDF/PDF-Viewer/angular/formdesigner/programmatically-work-with-form-field.md
deleted file mode 100644
index dd6c5e100..000000000
--- a/Document-Processing/PDF/PDF-Viewer/angular/formdesigner/programmatically-work-with-form-field.md
+++ /dev/null
@@ -1,112 +0,0 @@
----
-layout: post
-title: Programmatically work with form field in Angular Pdfviewer component | Syncfusion
-description: Learn here all about Programmatically work with form field in Syncfusion Angular Pdfviewer component of Syncfusion Essential JS 2 and more.
-platform: document-processing
-control: Programmatically work with form field
-documentation: ug
-domainurl: ##DomainURL##
----
-
-# Programmatically work with form field
-
-The PDF Viewer control provides the option to add, edit and delete the Form Fields. The Form Fields type supported by the PDF Viewer Control are:
-
- * Textbox
- * Password
- * CheckBox
- * RadioButton
- * ListBox
- * DropDown
- * SignatureField
- * InitialField
-
-## Add a form field to PDF document programmatically
-
-Using addFormField method, the form fields can be added to the PDF document programmatically. We need to pass two parameters in this method. They are Form Field Type and Properties of Form Field Type. To add form field programmatically, Use the following code.
-
-{% tabs %}
-{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/pdfviewer/angular/addformfield-cs2/src/app.component.ts %}
-{% endhighlight %}
-
-{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/pdfviewer/angular/addformfield-cs2/src/main.ts %}
-{% endhighlight %}
-{% endtabs %}
-
-{% previewsample "Document-Processing/samples/pdfviewer/angular/addformfield-cs2/index.html" %}
-
-## Edit/Update form field programmatically
-
-Using updateFormField method, Form Field can be updated programmatically. We should get the Form Field object/Id from FormFieldCollections property that you would like to edit and pass it as a parameter to updateFormField method. The second parameter should be the properties that you would like to update for Form Field programmatically. We have updated the value and background Color properties of Textbox Form Field.
-
-{% tabs %}
-{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/pdfviewer/angular/updateformfield-cs2/src/app.component.ts %}
-{% endhighlight %}
-
-{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/pdfviewer/angular/updateformfield-cs2/src/main.ts %}
-{% endhighlight %}
-{% endtabs %}
-
-{% previewsample "Document-Processing/samples/pdfviewer/angular/updateformfield-cs2/index.html" %}
-
-## Delete form field programmatically
-
-Using deleteFormField method, the form field can be deleted programmatically. We should retrieve the Form Field object/Id from FormFieldCollections property that you would like to delete and pass it as a parameter to deleteFormField method. To delete a Form Field programmatically, use the following code.
-
-{% tabs %}
-{% highlight ts tabtitle="app.component.ts" %}
-{% include code-snippet/pdfviewer/angular/deleteformfield-cs2/src/app.component.ts %}
-{% endhighlight %}
-
-{% highlight ts tabtitle="main.ts" %}
-{% include code-snippet/pdfviewer/angular/deleteformfield-cs2/src/main.ts %}
-{% endhighlight %}
-{% endtabs %}
-
-{% previewsample "Document-Processing/samples/pdfviewer/angular/deleteformfield-cs2/index.html" %}
-
-## Saving the form fields
-
-When the download icon is selected on the toolbar, the Form Fields will be saved in the PDF document and this action will not affect the original document. Refer the below GIF for further reference.
-
-
-
-You can invoke download action using following code snippet.
-
-```html
-
-
-```
-
-## Printing the form fields
-
-When the print icon is selected on the toolbar, the PDF document will be printed along with the Form Fields added to the pages and this action will not affect the original document. Refer the below GIF for further reference.
-
-
-
-You can invoke print action using the following code snippet.,
-
-```html
-
-
-```
-
-## Open the existing PDF document
-
-We can open the already saved PDF document contains Form Fields in it by clicking the open icon in the toolbar. Refer the below GIF for further reference.
-
-
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/angular/formdesigner/user-interaction-with-form-fields.md b/Document-Processing/PDF/PDF-Viewer/angular/formdesigner/user-interaction-with-form-fields.md
deleted file mode 100644
index e3a7a5300..000000000
--- a/Document-Processing/PDF/PDF-Viewer/angular/formdesigner/user-interaction-with-form-fields.md
+++ /dev/null
@@ -1,111 +0,0 @@
----
-layout: post
-title: User interaction in Angular Pdfviewer component | Syncfusion
-description: Learn here all about User interaction with form fields in Syncfusion Angular Pdfviewer component of Syncfusion Essential JS 2 and more.
-platform: document-processing
-control: User interaction with form fields
-documentation: ug
-domainurl: ##DomainURL##
----
-
-# User interaction with form fields
-
-The PDF viewer control provides the option for interaction with Form Fields such as Drag and resize. you can draw a Form Field dynamically by clicking the Form Field icon on the toolbar and draw it in the PDF document. The Form Fields type supported by the PDF Viewer Control are:
-
- * Textbox
- * Password
- * CheckBox
- * RadioButton
- * ListBox
- * DropDown
- * SignatureField
- * InitialField
-
-## Enable or Disable form designer toolbar
-
-We should inject FormDesigner module and set enableFormDesignerToolbar as true to enable the Form designer icon on the toolbar. By default, enableFormDesignerToolbar is set as true. Use the following code to inject FormDesigner module and to enable the enableFormDesignerToolbar property.
-
-```html
-import { ViewChild } from '@angular/core';
-import { Component, OnInit } from '@angular/core';
-import { PdfViewerComponent, LinkAnnotationService, BookmarkViewService,
- MagnificationService, ThumbnailViewService, ToolbarService,
- NavigationService, TextSearchService, TextSelectionService,
- PrintService, AnnotationService, FormDesignerService,
- FormFieldsService
- } from '@syncfusion/ej2-angular-pdfviewer';
-
-@Component({
- selector: 'app-root',
- // Specifies the template string for the PDF Viewer component.
- template: `
-
-
-
`,
- providers: [ LinkAnnotationService, BookmarkViewService, MagnificationService,
- ThumbnailViewService, ToolbarService, NavigationService,
- TextSearchService, TextSelectionService, PrintService,
- AnnotationService, FormDesignerService, FormFieldsService]
-})
-export class AppComponent implements OnInit {
- @ViewChild('pdfviewer')
- public pdfviewerControl: PdfViewerComponent;
- public service: string = 'https://document.syncfusion.com/web-services/pdf-viewer/api/pdfviewer';
- public document: string = 'FormDesigner.pdf';
- ngOnInit(): void {
- }
-}
-```
-
-## Add the form field dynamically
-
-Click the Form Field icon on the toolbar and then click on to the PDF document to draw a Form Field. Refer the below GIF for further reference.
-
-
-
-## Drag the form field
-
-We provide options to drag the Form Field which is currently selected in the PDF document. Refer the below GIF for further reference.
-
-
-
-## Resize the form field
-
-We provide options to resize the Form Field which is currently selected in the PDF document. Refer the below GIF for further reference.
-
-
-
-## Edit or Update the form field dynamically
-
-The properties of the Form Fields can be edited using the Form Field Properties window. It can be opened by selecting the Properties option in the context menu that appears on the right by clicking the Form Field object. Refer the below image for the properties available to customize the appearance of the Form Field.
-
-
-
-
-
-
-
-## Clipboard operation with form field
-
-The PDF Viewer control supports the clipboard operations such as cut, copy and paste for Form Fields. You can right click on the Form Field object to view the context menu and select to the clipboard options that you would like to perform. Refer the below image for the options in the context menu.
-
-
-
-## Undo and Redo
-
-We provided support to undo/redo the Form Field actions that are performed at runtime. Use the following code example to perform undo/redo actions.
-
-```html
-
-
-```
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/asp-net-core/formdesigner/programmatically-work-with-form-field.md b/Document-Processing/PDF/PDF-Viewer/asp-net-core/formdesigner/programmatically-work-with-form-field.md
deleted file mode 100644
index ad3cb3e52..000000000
--- a/Document-Processing/PDF/PDF-Viewer/asp-net-core/formdesigner/programmatically-work-with-form-field.md
+++ /dev/null
@@ -1,151 +0,0 @@
----
-layout: post
-title: Programmatically Work With Form Field in ASP.NET Core Pdfviewer Component
-description: Learn here all about Programmatically Work With Form Field in Syncfusion ASP.NET Core Pdfviewer component of Syncfusion Essential JS 2 and more.
-platform: document-processing
-control: Programmatically Work With Form Field
-publishingplatform: ASP.NET Core
-documentation: ug
----
-
-
-# Programmatically work with form field
-
-The PDF Viewer control provides the option to add, edit and delete the Form Fields. The Form Fields type supported by the PDF Viewer Control are:
-
- * Textbox
- * Password
- * CheckBox
- * RadioButton
- * ListBox
- * DropDown
- * SignatureField
- * InitialField
-
-## Add a form field to PDF document programmatically
-
-Using addFormField method, the form fields can be added to the PDF document programmatically. We need to pass two parameters in this method. They are Form Field Type and Properties of Form Field Type. To add form field programmatically, Use the following code.
-
-```html
-
-
-
-
-
-
-```
-
-## Edit/Update form field programmatically
-
-Using updateFormField method, Form Field can be updated programmatically. We should get the Form Field object/Id from FormFieldCollections property that you would like to edit and pass it as a parameter to updateFormField method. The second parameter should be the properties that you would like to update for Form Field programmatically. We have updated the value and background Color properties of Textbox Form Field.
-
-```html
-
-
-
-
-
-
-```
-
-## Delete form field programmatically
-
-Using deleteFormField method, the form field can be deleted programmatically. We should retrieve the Form Field object/Id from FormFieldCollections property that you would like to delete and pass it as a parameter to deleteFormField method. To delete a Form Field programmatically, use the following code.
-
-```html
-
-
-
-
-
-
-```
-
-## Saving the form fields
-
-When the download icon is selected on the toolbar, the Form Fields will be saved in the PDF document and this action will not affect the original document. Refer the below GIF for further reference.
-
-
-
-You can invoke download action using following code snippet.
-
-```html
-
-
-
-
-
-
-```
-
-## Printing the form fields
-
-When the print icon is selected on the toolbar, the PDF document will be printed along with the Form Fields added to the pages and this action will not affect the original document. Refer the below GIF for further reference.
-
-
-
-You can invoke print action using the following code snippet.,
-
-```html
-
-
-
-
-
-
-```
-
-## Open the existing PDF document
-
-We can open the already saved PDF document contains Form Fields in it by clicking the open icon in the toolbar. Refer the below GIF for further reference.
-
-
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/asp-net-core/formdesigner/user-interaction-with-form-fields.md b/Document-Processing/PDF/PDF-Viewer/asp-net-core/formdesigner/user-interaction-with-form-fields.md
deleted file mode 100644
index ed485563d..000000000
--- a/Document-Processing/PDF/PDF-Viewer/asp-net-core/formdesigner/user-interaction-with-form-fields.md
+++ /dev/null
@@ -1,99 +0,0 @@
----
-layout: post
-title: User Interaction With Form Fields in ASP.NET Core Pdfviewer Component
-description: Learn here all about User Interaction With Form Fields in Syncfusion ASP.NET Core Pdfviewer component of Syncfusion Essential JS 2 and more.
-platform: document-processing
-control: User Interaction With Form Fields
-publishingplatform: ASP.NET Core
-documentation: ug
----
-
-
-# User interaction with form fields
-
-The PDF viewer control provides the option for interaction with Form Fields such as Drag and resize. you can draw a Form Field dynamically by clicking the Form Field icon on the toolbar and draw it in the PDF document. The Form Fields type supported by the PDF Viewer Control are:
-
- * Textbox
- * Password
- * CheckBox
- * RadioButton
- * ListBox
- * DropDown
- * SignatureField
- * InitialField
-
-## Enable or Disable form designer toolbar
-
-We should inject FormDesigner module and set enableFormDesignerToolbar as true to enable the Form designer icon on the toolbar. By default, enableFormDesignerToolbar is set as true. Use the following code to inject FormDesigner module and to enable the enableFormDesignerToolbar property.
-
-```html
-
-
-
-
-```
-
-## Add the form field dynamically
-
-Click the Form Field icon on the toolbar and then click on to the PDF document to draw a Form Field. Refer the below GIF for further reference.
-
-
-
-## Drag the form field
-
-We provide options to drag the Form Field which is currently selected in the PDF document. Refer the below GIF for further reference.
-
-
-
-## Resize the form field
-
-We provide options to resize the Form Field which is currently selected in the PDF document. Refer the below GIF for further reference.
-
-
-
-## Edit or Update the form field dynamically
-
-The properties of the Form Fields can be edited using the Form Field Properties window. It can be opened by selecting the Properties option in the context menu that appears on the right by clicking the Form Field object. Refer the below image for the properties available to customize the appearance of the Form Field.
-
-
-
-
-
-
-
-## Clipboard operation with form field
-
-The PDF Viewer control supports the clipboard operations such as cut, copy and paste for Form Fields. You can right click on the Form Field object to view the context menu and select to the clipboard options that you would like to perform. Refer the below image for the options in the context menu.
-
-
-
-## Undo and Redo
-
-We provided support to undo/redo the Form Field actions that are performed at runtime. Use the following code example to perform undo/redo actions.
-
-```html
-
-
-
-
-
-
-
-```
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/asp-net-mvc/formdesigner/programmatically-work-with-form-field.md b/Document-Processing/PDF/PDF-Viewer/asp-net-mvc/formdesigner/programmatically-work-with-form-field.md
deleted file mode 100644
index 0c6d7d883..000000000
--- a/Document-Processing/PDF/PDF-Viewer/asp-net-mvc/formdesigner/programmatically-work-with-form-field.md
+++ /dev/null
@@ -1,126 +0,0 @@
----
-layout: post
-title: Programmatically Work With Form Field in ASP.NET MVC Pdfviewer Component
-description: Learn here all about Programmatically Work With Form Field in Syncfusion ASP.NET MVC Pdfviewer component of Syncfusion Essential JS 2 and more.
-platform: document-processing
-control: Programmatically Work With Form Field
-publishingplatform: ASP.NET MVC
-documentation: ug
----
-
-
-# Programmatically work with form field
-
-The PDF Viewer control provides the option to add, edit and delete the Form Fields. The Form Fields type supported by the PDF Viewer Control are:
-
- * Textbox
- * Password
- * CheckBox
- * RadioButton
- * ListBox
- * DropDown
- * SignatureField
- * InitialField
-
-## Add a form field to PDF document programmatically
-
-Using addFormField method, the form fields can be added to the PDF document programmatically. We need to pass two parameters in this method. They are Form Field Type and Properties of Form Field Type. To add form field programmatically, Use the following code.
-
-```html
-
-
-
-```
-
-## Edit/Update form field programmatically
-
-Using updateFormField method, Form Field can be updated programmatically. We should get the Form Field object/Id from FormFieldCollections property that you would like to edit and pass it as a parameter to updateFormField method. The second parameter should be the properties that you would like to update for Form Field programmatically. We have updated the value and background Color properties of Textbox Form Field.
-
-```html
-
-
-
-```
-
-## Delete form field programmatically
-
-Using deleteFormField method, the form field can be deleted programmatically. We should retrieve the Form Field object/Id from FormFieldCollections property that you would like to delete and pass it as a parameter to deleteFormField method. To delete a Form Field programmatically, use the following code.
-
-```html
-
-
-
-```
-
-## Saving the form fields
-
-When the download icon is selected on the toolbar, the Form Fields will be saved in the PDF document and this action will not affect the original document. Refer the below GIF for further reference.
-
-
-
-You can invoke download action using following code snippet.
-
-```html
-
-
-
-```
-
-## Printing the form fields
-
-When the print icon is selected on the toolbar, the PDF document will be printed along with the Form Fields added to the pages and this action will not affect the original document. Refer the below GIF for further reference.
-
-
-
-You can invoke print action using the following code snippet.,
-
-```html
-
-
-
-```
-
-## Open the existing PDF document
-
-We can open the already saved PDF document contains Form Fields in it by clicking the open icon in the toolbar. Refer the below GIF for further reference.
-
-
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/asp-net-mvc/formdesigner/user-interaction-with-form-fields.md b/Document-Processing/PDF/PDF-Viewer/asp-net-mvc/formdesigner/user-interaction-with-form-fields.md
deleted file mode 100644
index c0a903c7f..000000000
--- a/Document-Processing/PDF/PDF-Viewer/asp-net-mvc/formdesigner/user-interaction-with-form-fields.md
+++ /dev/null
@@ -1,90 +0,0 @@
----
-layout: post
-title: User Interaction With Form Fields in ASP.NET MVC Pdfviewer Component
-description: Learn here all about User Interaction With Form Fields in Syncfusion ASP.NET MVC Pdfviewer component of Syncfusion Essential JS 2 and more.
-platform: document-processing
-control: User Interaction With Form Fields
-publishingplatform: ASP.NET MVC
-documentation: ug
----
-
-
-# User interaction with form fields
-
-The PDF viewer control provides the option for interaction with Form Fields such as Drag and resize. you can draw a Form Field dynamically by clicking the Form Field icon on the toolbar and draw it in the PDF document. The Form Fields type supported by the PDF Viewer Control are:
-
- * Textbox
- * Password
- * CheckBox
- * RadioButton
- * ListBox
- * DropDown
- * SignatureField
- * InitialField
-
-## Enable or Disable form designer toolbar
-
-We should inject FormDesigner module and set enableFormDesignerToolbar as true to enable the Form designer icon on the toolbar. By default, enableFormDesignerToolbar is set as true. Use the following code to inject FormDesigner module and to enable the enableFormDesignerToolbar property.
-
-```html
-
-
-```
-
-## Add the form field dynamically
-
-Click the Form Field icon on the toolbar and then click on to the PDF document to draw a Form Field. Refer the below GIF for further reference.
-
-
-
-## Drag the form field
-
-We provide options to drag the Form Field which is currently selected in the PDF document. Refer the below GIF for further reference.
-
-
-
-## Resize the form field
-
-We provide options to resize the Form Field which is currently selected in the PDF document. Refer the below GIF for further reference.
-
-
-
-## Edit or Update the form field dynamically
-
-The properties of the Form Fields can be edited using the Form Field Properties window. It can be opened by selecting the Properties option in the context menu that appears on the right by clicking the Form Field object. Refer the below image for the properties available to customize the appearance of the Form Field.
-
-
-
-
-
-
-
-## Clipboard operation with form field
-
-The PDF Viewer control supports the clipboard operations such as cut, copy and paste for Form Fields. You can right click on the Form Field object to view the context menu and select to the clipboard options that you would like to perform. Refer the below image for the options in the context menu.
-
-
-
-## Undo and Redo
-
-We provided support to undo/redo the Form Field actions that are performed at runtime. Use the following code example to perform undo/redo actions.
-
-```html
-
-
-
-
-```
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/accessibility.md b/Document-Processing/PDF/PDF-Viewer/react/accessibility.md
index 31c4d9c0b..07fe349bc 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/accessibility.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/accessibility.md
@@ -8,7 +8,7 @@ documentation: ug
domainurl: ##DomainURL##
---
-# Accessibility in Syncfusion® React PDF Viewer components
+# Accessibility in Syncfusion PDF Viewer components React
The PDF Viewer component followed the accessibility guidelines and standards, including [ADA](https://www.ada.gov/), [Section 508](https://www.section508.gov/), [WCAG 2.2](https://www.w3.org/TR/WCAG22/) standards, and [WCAG roles](https://www.w3.org/TR/wai-aria/#roles) that are commonly used to evaluate accessibility.
@@ -156,7 +156,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
commandManager = {commandManager}
style={{ 'height': '640px' }}>
diff --git a/Document-Processing/PDF/PDF-Viewer/react/annotation/annotation-event.md b/Document-Processing/PDF/PDF-Viewer/react/annotation/annotation-event.md
new file mode 100644
index 000000000..edecf4606
--- /dev/null
+++ b/Document-Processing/PDF/PDF-Viewer/react/annotation/annotation-event.md
@@ -0,0 +1,1391 @@
+---
+title: Annotations Events in React Pdfviewer control | Syncfusion
+description: Learn here all about Annotations Events in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
+platform: document-processing
+control: PDF Viewer
+documentation: ug
+
+domainurl: ##DomainURL##
+---
+
+# Annotations Events in React PDF Viewer control
+
+The PDF Viewer component triggers various events based on user interactions and changes in the component's state. These events can be used to perform actions when a specific event occurs. This section describes the events available in the PDF Viewer component.
+
+| Event | Description |
+| ------------------------------------------------------------------ | ---------------------------------------------------------------------------------- |
+| [`annotationAdd`](#annotationadd) | Triggers when an annotation is added to a page in the PDF document. |
+| [`annotationDoubleClick`](#annotationdoubleclick) | Triggers when an annotation is double-clicked. |
+| [`annotationMouseLeave`](#annotationmouseleave) | Triggers when the mouse pointer moves away from an annotation object. |
+| [`annotationMouseover`](#annotationmouseover) | Triggers when the mouse pointer moves over an annotation object. |
+| [`annotationMove`](#annotationmove) | Triggers when an annotation is moved on a page in the PDF document. |
+| [`annotationMoving`](#annotationmoving) | Triggers while an annotation is being moved. |
+| [`annotationPropertiesChange`](#annotationpropertieschange) | Triggers when the properties of an annotation are modified on a PDF page. |
+| [`annotationRemove`](#annotationremove) | Triggers when an annotation is removed from a page in the PDF document. |
+| [`annotationResize`](#annotationresize) | Triggers when an annotation is resized on a page in the PDF document. |
+| [`annotationSelect`](#annotationselect) | Triggers when an annotation is selected on a page in the PDF document. |
+| [`annotationUnSelect`](#annotationunselect) | Triggers when an annotation is unselected on a page in the PDF document. |
+| [`beforeAddFreeText`](#beforeaddfreetext) | Triggers before adding a text in the freeText annotation. |
+| [`addSignature`](#addsignature) | Triggers when a signature is added to a page in the PDF document. |
+| [`removeSignature`](#removesignature) | Triggers when a signature is removed from a page in the PDF document. |
+| [`resizeSignature`](#resizesignature) | Triggers when a signature is resized on a page in the PDF document. |
+| [`signaturePropertiesChange`](#signaturepropertieschange) | Triggers when the properties of a signature are changed on a page in the PDF document. |
+| [`signatureSelect`](#signatureselect) | Triggers when a signature is selected on a page in the PDF document. |
+| [`signatureUnselect`](#signatureunselect) | Triggers when a signature is unselected on a page in the PDF document. |
+
+
+### annotationAdd
+
+The [annotationAdd](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#annotationaddevent) event is triggered when an annotation is added to a PDF document's page.
+
+#### Event Arguments
+
+For event data, see [AnnotationAddEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationAddEventArgs/). It provides properties such as `annotationId`, `pageNumber`, `annotationType`, and `bounds`.
+
+The following example illustrates how to handle the `annotationAdd` event.
+
+```html
+
+
+
+
+ EJ2 PDF Viewer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Loading....
+
+
+
+
+
+```
+
+{% tabs %}
+{% highlight ts tabtitle="Standalone" %}
+{% raw %}
+
+import * as React from 'react';
+import { PdfViewerComponent, Inject, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const annotationAdd = (args) => {
+ console.log('Annotation added with ID: ' + args.annotationId);
+ console.log('Annotation type: ' + args.annotationType);
+ };
+
+ return (
+
+
+
+ );
+}
+
+export default App;
+
+{% endraw %}
+{% endhighlight %}
+{% endtabs %}
+
+### annotationDoubleClick
+
+The [annotationDoubleClick](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#annotationdoubleclickevent) event is triggered when an annotation is double-clicked.
+
+#### Event Arguments
+
+For event data, see [AnnotationDoubleClickEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationDoubleClickEventArgs/).
+
+The following example illustrates how to handle the `annotationDoubleClick` event.
+
+```html
+
+
+
+
+ EJ2 PDF Viewer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Loading....
+
+
+
+
+
+```
+
+{% tabs %}
+{% highlight ts tabtitle="Standalone" %}
+{% raw %}
+
+import * as React from 'react';
+import { PdfViewerComponent, Inject, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const annotationDoubleClick = (args) => {
+ console.log('Annotation double-clicked on page: ' + args.pageIndex);
+ };
+
+ return (
+
+
+
+ );
+}
+
+export default App;
+
+{% endraw %}
+{% endhighlight %}
+{% endtabs %}
+
+### annotationMouseLeave
+
+The [annotationMouseLeave](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#annotationmouseleaveevent) event is triggered when the user's mouse pointer moves away from an annotation object.
+
+#### Event Arguments
+
+For event data, see [AnnotationMouseLeaveEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationMouseLeaveEventArgs/).
+
+The following example illustrates how to handle the `annotationMouseLeave` event.
+
+```html
+
+
+
+
+ EJ2 PDF Viewer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Loading....
+
+
+
+
+
+```
+
+{% tabs %}
+{% highlight ts tabtitle="Standalone" %}
+{% raw %}
+
+import * as React from 'react';
+import { PdfViewerComponent, Inject, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const annotationMouseLeave = (args) => {
+ console.log('Annotation mouse leave event is triggered for annotation with ID: ' + args.pageIndex);
+ };
+
+ return (
+
+
+
+ );
+}
+
+export default App;
+
+{% endraw %}
+{% endhighlight %}
+{% endtabs %}
+
+### annotationMouseover
+
+The [annotationMouseover](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#annotationmouseoverevent) event is triggered when the mouse is moved over an annotation object.
+
+#### Event Arguments
+
+For event data, see [AnnotationMouseOverEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationMouseOverEventArgs/).
+
+The following example illustrates how to handle the `annotationMouseover` event.
+
+```html
+
+
+
+
+ EJ2 PDF Viewer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Loading....
+
+
+
+
+
+```
+
+{% tabs %}
+{% highlight ts tabtitle="Standalone" %}
+{% raw %}
+
+import * as React from 'react';
+import { PdfViewerComponent, Inject, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const annotationMouseover = (args) => {
+ console.log('Annotation mouse over event is triggered for annotation with ID: ' + args.annotationId);
+ };
+
+ return (
+
+
+
+ );
+}
+
+export default App;
+
+{% endraw %}
+{% endhighlight %}
+{% endtabs %}
+
+### annotationMove
+
+The [annotationMove](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#annotationmoveevent) event is triggered when an annotation is moved over the page of the PDF document.
+
+#### Event Arguments
+
+For event data, see [AnnotationMoveEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationMoveEventArgs/).
+
+The following example illustrates how to handle the `annotationMove` event.
+
+```html
+
+
+
+
+ EJ2 PDF Viewer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Loading....
+
+
+
+
+
+```
+
+{% tabs %}
+{% highlight ts tabtitle="Standalone" %}
+{% raw %}
+
+import * as React from 'react';
+import { PdfViewerComponent, Inject, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const annotationMove = (args) => {
+ console.log('Annotation moved. ID: ' + args.annotationId + ' on page ' + args.pageIndex);
+ };
+
+ return (
+
+
+
+ );
+}
+
+export default App;
+
+{% endraw %}
+{% endhighlight %}
+{% endtabs %}
+
+### annotationMoving
+
+The [annotationMoving](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#annotationmovingevent) event is triggered while an annotation is being moved.
+
+#### Event Arguments
+
+For event data, see [AnnotationMovingEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationMovingEventArgs/).
+
+The following example illustrates how to handle the `annotationMoving` event.
+
+```html
+
+
+
+
+ EJ2 PDF Viewer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Loading....
+
+
+
+
+
+```
+
+{% tabs %}
+{% highlight ts tabtitle="Standalone" %}
+{% raw %}
+
+import * as React from 'react';
+import { PdfViewerComponent, Inject, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const annotationMoving = (args) => {
+ console.log('Annotation is being moved. Current Action: ' + args.currentPosition);
+ };
+
+ return (
+
+
+
+ );
+}
+
+export default App;
+
+{% endraw %}
+{% endhighlight %}
+{% endtabs %}
+
+### annotationPropertiesChange
+
+The [annotationPropertiesChange](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#annotationpropertieschangeevent) event is triggered when an annotation's property is modified on a PDF document page.
+
+#### Event Arguments
+
+For event data, see [AnnotationPropertiesChangeEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationPropertiesChangeEventArgs/). It provides properties such as `annotationId`, `pageNumber`, and `action`.
+
+The following example illustrates how to handle the `annotationPropertiesChange` event.
+
+```html
+
+
+
+
+ EJ2 PDF Viewer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Loading....
+
+
+
+
+
+```
+
+{% tabs %}
+{% highlight ts tabtitle="Standalone" %}
+{% raw %}
+
+import * as React from 'react';
+import { PdfViewerComponent, Inject, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const annotationPropertiesChange = (args) => {
+ console.log('Annotation properties changed for ID: ' + args.annotationId);
+ console.log('isThicknessChanged: ' + args.isThicknessChanged);
+ };
+
+ return (
+
+
+
+ );
+}
+
+export default App;
+
+{% endraw %}
+{% endhighlight %}
+{% endtabs %}
+
+### annotationRemove
+
+The [annotationRemove](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#annotationremoveevent) event is triggered when an annotation is removed from a PDF document's page.
+
+#### Event Arguments
+
+For event data, see [AnnotationRemoveEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationRemoveEventArgs/). It provides properties such as `annotationId` and `pageNumber`.
+
+The following example illustrates how to handle the `annotationRemove` event.
+
+```html
+
+
+
+
+ EJ2 PDF Viewer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Loading....
+
+
+
+
+
+```
+
+{% tabs %}
+{% highlight ts tabtitle="Standalone" %}
+{% raw %}
+
+import * as React from 'react';
+import { PdfViewerComponent, Inject, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const annotationRemove = (args) => {
+ console.log('Annotation removed with ID: ' + args.annotationId);
+ };
+
+ return (
+
+
+
+ );
+}
+
+export default App;
+
+{% endraw %}
+{% endhighlight %}
+{% endtabs %}
+
+### annotationResize
+
+The [annotationResize](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#annotationresizeevent) event is triggered when an annotation is resized on a PDF document page.
+
+#### Event Arguments
+
+For event data, see [AnnotationResizeEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationResizeEventArgs/).
+
+The following example illustrates how to handle the `annotationResize` event.
+
+```html
+
+
+
+
+ EJ2 PDF Viewer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Loading....
+
+
+
+
+
+```
+
+{% tabs %}
+{% highlight ts tabtitle="Standalone" %}
+{% raw %}
+
+import * as React from 'react';
+import { PdfViewerComponent, Inject, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const annotationResize = (args) => {
+ console.log('Annotation resized. ID: ' + args.annotationId);
+ };
+
+ return (
+
+
+
+ );
+}
+
+export default App;
+
+{% endraw %}
+{% endhighlight %}
+{% endtabs %}
+
+### annotationSelect
+
+The [annotationSelect](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#annotationselectevent) event is triggered when an annotation is selected on a PDF document's page.
+
+#### Event Arguments
+
+For event data, see [AnnotationSelectEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationSelectEventArgs/).
+
+The following example illustrates how to handle the `annotationSelect` event.
+
+```html
+
+
+
+
+ EJ2 PDF Viewer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Loading....
+
+
+
+
+
+```
+
+{% tabs %}
+{% highlight ts tabtitle="Standalone" %}
+{% raw %}
+
+import * as React from 'react';
+import { PdfViewerComponent, Inject, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const annotationSelect = (args) => {
+ console.log('Annotation selected with ID: ' + args.annotationId);
+ };
+
+ return (
+
+
+
+ );
+}
+
+export default App;
+
+{% endraw %}
+{% endhighlight %}
+{% endtabs %}
+
+### annotationUnselect
+
+The [annotationUnselect](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#annotationunselectevent) event is triggered when an annotation is unselected from the PDF document's page.
+
+#### Event Arguments
+
+For event data, see [AnnotationUnSelectEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationUnSelectEventArgs/).
+
+The following example illustrates how to handle the `annotationUnselect` event.
+
+```html
+
+
+
+
+ EJ2 PDF Viewer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Loading....
+
+
+
+
+
+```
+
+{% tabs %}
+{% highlight ts tabtitle="Standalone" %}
+{% raw %}
+
+import * as React from 'react';
+import { PdfViewerComponent, Inject, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const annotationUnselect = (args) => {
+ console.log('Annotation unselected with ID: ' + args.annotationId);
+ };
+
+ return (
+
+
+
+ );
+}
+
+export default App;
+
+{% endraw %}
+{% endhighlight %}
+{% endtabs %}
+
+### beforeAddFreeText
+
+The [beforeAddFreeText](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#beforeaddfreetextevent) event is triggered before adding a text in the freeText annotation.
+
+#### Event Arguments
+
+For event data, see [BeforeAddFreeTextEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/beforeAddFreeTextEventArgs/).
+
+The following example illustrates how to handle the `beforeAddFreeText` event.
+
+```html
+
+
+
+
+ EJ2 PDF Viewer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Loading....
+
+
+
+
+
+```
+
+{% tabs %}
+{% highlight ts tabtitle="Standalone" %}
+{% raw %}
+
+import * as React from 'react';
+import { PdfViewerComponent, Inject, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const beforeAddFreeText = (args) => {
+ console.log('Before adding free text on page: ' + args.pageIndex);
+ // To prevent adding the free text annotation
+ // args.cancel = true;
+ };
+
+ return (
+
+
+
+ );
+}
+
+export default App;
+
+{% endraw %}
+{% endhighlight %}
+{% endtabs %}
+
+## Signature-related events
+
+### addSignature
+
+The [addSignature](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#addsignatureevent) event is triggered when a signature is added to a page of a PDF document.
+
+#### Event Arguments
+
+For event data, see [AddSignatureEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/addSignatureEventArgs/). It provides properties such as `pageNumber`.
+
+The following example illustrates how to handle the `addSignature` event.
+
+```html
+
+
+
+
+ EJ2 PDF Viewer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Loading....
+
+
+
+
+
+```
+
+{% tabs %}
+{% highlight ts tabtitle="Standalone" %}
+{% raw %}
+
+import * as React from 'react';
+import { PdfViewerComponent, Inject, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const addSignature = (args) => {
+ console.log('Signature added to page: ' + args.pageIndex);
+ };
+
+ return (
+
+
+
+ );
+}
+
+export default App;
+
+{% endraw %}
+{% endhighlight %}
+{% endtabs %}
+
+### removeSignature
+
+The [removeSignature](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#removesignatureevent) event is triggered when the signature is removed from the page of a PDF document.
+
+#### Event Arguments
+
+For event data, see [RemoveSignatureEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/removeSignatureEventArgs/). It provides properties such as `pageNumber`.
+
+The following example illustrates how to handle the `removeSignature` event.
+
+```html
+
+
+
+
+ EJ2 PDF Viewer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Loading....
+
+
+
+
+
+```
+
+{% tabs %}
+{% highlight ts tabtitle="Standalone" %}
+{% raw %}
+
+import * as React from 'react';
+import { PdfViewerComponent, Inject, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const removeSignature = (args) => {
+ console.log('Signature removed from page: ' + args.pageIndex);
+ };
+
+ return (
+
+
+
+ );
+}
+
+export default App;
+
+{% endraw %}
+{% endhighlight %}
+{% endtabs %}
+
+### resizeSignature
+
+The [resizeSignature](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#resizesignatureevent) event is triggered when the signature is resized and placed on a page of a PDF document.
+
+#### Event Arguments
+
+For event data, see [ResizeSignatureEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/resizeSignatureEventArgs/).
+
+The following example illustrates how to handle the `resizeSignature` event.
+
+```html
+
+
+
+
+ EJ2 PDF Viewer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Loading....
+
+
+
+
+
+```
+
+{% tabs %}
+{% highlight ts tabtitle="Standalone" %}
+{% raw %}
+
+import * as React from 'react';
+import { PdfViewerComponent, Inject, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const resizeSignature = (args) => {
+ console.log('Signature resized on page ' + args.pageIndex);
+ };
+
+ return (
+
+
+
+ );
+}
+
+export default App;
+
+{% endraw %}
+{% endhighlight %}
+{% endtabs %}
+
+### signaturePropertiesChange
+
+The [signaturePropertiesChange](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#signaturepropertieschangeevent) event is triggered when the property of the signature is changed in the page of the PDF document.
+
+#### Event Arguments
+
+For event data, see [SignaturePropertiesChangeEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/signaturePropertiesChangeEventArgs/).
+
+The following example illustrates how to handle the `signaturePropertiesChange` event.
+
+```html
+
+
+
+
+ EJ2 PDF Viewer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Loading....
+
+
+
+
+
+```
+
+{% tabs %}
+{% highlight ts tabtitle="Standalone" %}
+{% raw %}
+
+import * as React from 'react';
+import { PdfViewerComponent, Inject, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const signaturePropertiesChange = (args) => {
+ console.log('Signature properties changed on page ' + args.pageIndex);
+ };
+
+ return (
+
+
+
+ );
+}
+
+export default App;
+
+{% endraw %}
+{% endhighlight %}
+{% endtabs %}
+
+### signatureSelect
+
+The [signatureSelect](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#signatureselectevent) event is triggered when signature is selected over the page of the PDF document.
+
+#### Event Arguments
+
+For event data, see [SignatureSelectEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/signatureSelectEventArgs/).
+
+The following example illustrates how to handle the `signatureSelect` event.
+
+```html
+
+
+
+
+ EJ2 PDF Viewer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Loading....
+
+
+
+
+
+```
+
+{% tabs %}
+{% highlight ts tabtitle="Standalone" %}
+{% raw %}
+
+import * as React from 'react';
+import { PdfViewerComponent, Inject, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const signatureSelect = (args) => {
+ console.log('Signature selected on page ' + args.pageIndex);
+ };
+
+ return (
+
+
+
+ );
+}
+
+export default App;
+
+{% endraw %}
+{% endhighlight %}
+{% endtabs %}
+
+### signatureUnselect
+
+The [signatureUnselect](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#signatureunselectevent) event is triggered when signature is unselected over the page of the PDF document.
+
+#### Event Arguments
+
+For event data, see [SignatureUnSelectEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/signatureUnSelectEventArgs/).
+
+The following example illustrates how to handle the `signatureUnselect` event.
+
+```html
+
+
+
+
+ EJ2 PDF Viewer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Loading....
+
+
+
+
+
+```
+
+{% tabs %}
+{% highlight ts tabtitle="Standalone" %}
+{% raw %}
+
+import * as React from 'react';
+import { PdfViewerComponent, Inject, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const signatureUnselect = (args) => {
+ console.log('Signature unselected on page ' + args.pageIndex);
+ };
+
+ return (
+
+
+
+ );
+}
+
+export default App;
+
+{% endraw %}
+{% endhighlight %}
+{% endtabs %}
diff --git a/Document-Processing/PDF/PDF-Viewer/react/annotation/annotations-in-mobile-view.md b/Document-Processing/PDF/PDF-Viewer/react/annotation/annotations-in-mobile-view.md
new file mode 100644
index 000000000..deb9a7eb2
--- /dev/null
+++ b/Document-Processing/PDF/PDF-Viewer/react/annotation/annotations-in-mobile-view.md
@@ -0,0 +1,122 @@
+---
+layout: post
+title: Annotations mobileView in React PDF Viewer control | Syncfusion
+description: Learn to add rectangle annotations via text search in Syncfusion React PDF Viewer for enhanced mobile usability.
+platform: document-processing
+control: PDF Viewer
+documentation: ug
+domainurl: ##DomainURL##
+---
+# Annotations in mobile view in React PDF Viewer control
+
+## Open the annotation toolbar
+
+**Step 1:** Click Edit Annotation on the toolbar to enable the annotation toolbar.
+
+
+
+**Step 2:** The annotation toolbar appears below the main toolbar.
+
+
+
+## Add sticky note annotations
+
+**Step 1:** Click the Sticky Notes icon, then tap the page where the note should be placed.
+
+
+
+**Step 2:** Tap the page to add the sticky note annotation.
+
+
+
+## Add text markup annotations
+
+**Step 1:** Tap a text markup icon, select the text to mark, then tap the selection to apply the markup.
+
+
+
+**Step 2:** The text markup annotation is applied to the selected text.
+
+
+
+## Add shape and measurement annotations
+
+**Step 1:** Tap the Shape or Measure icon to open the corresponding toolbar.
+
+
+
+**Step 2:** Choose a shape or measurement type, then draw it on the page.
+
+
+
+**Step 3:** The annotation appears on the PDF page.
+
+
+
+## Add stamp annotations
+
+**Step 1:** Tap the Stamp icon and select a stamp type from the menu.
+
+
+
+**Step 2:** Tap the page to place the stamp annotation.
+
+
+
+## Add signature annotations
+
+**Step 1:** Tap the Signature icon to open the canvas. Draw the signature, tap Create, then tap the viewer to place it.
+
+
+
+**Step 2:** The signature is added to the page.
+
+
+
+## Add ink annotations
+
+**Step 1:** Tap the Ink tool and draw on the page.
+
+
+
+**Step 2:** The ink annotation appears on the page.
+
+
+
+## Change annotation properties (before adding)
+
+**Step 1:** Change properties before placing the annotation.
+
+**Step 2:** Tap the annotation icon to open the property toolbar, adjust properties, then place the annotation on the page.
+
+
+
+## Change annotation properties (after adding)
+
+**Step 1:** Change annotation properties after adding the annotation.
+
+**Step 2:** Select the annotation to show the property toolbar, then adjust the properties.
+
+
+
+## Delete annotations
+
+**Step 1:** Select the annotation to show the property toolbar, then tap the Delete icon to remove it.
+
+
+
+## Open the comment panel
+
+**Step 1:** Open the comment panel using the icon in the property toolbar or the annotation toolbar.
+
+
+
+**Step 2:** The comment panel appears.
+
+
+
+## Close the comment panel
+
+**Step 1:** Tap the Close button to close the comment panel.
+
+
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/annotation/comments.md b/Document-Processing/PDF/PDF-Viewer/react/annotation/comments.md
index 5b8913683..034ebeadc 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/annotation/comments.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/annotation/comments.md
@@ -1,16 +1,16 @@
---
layout: post
title: Comments in React Pdfviewer component | Syncfusion
-description: Learn here all about Comments in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Comments
+description: Learn about comments, replies, and status in the Syncfusion React PDF Viewer control (Essential JS 2).
+control: PDF Viewer
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---
-# Comments in React Pdfviewer component
+# Comments in React PDF Viewer
-The PDF Viewer control provides options to add, edit, and delete the comments to the following annotation in the PDF documents:
+The PDF Viewer control provides options to add, edit, and delete comments for the following annotations in PDF documents:
* Shape annotation
* Stamp annotation
@@ -20,11 +20,12 @@ The PDF Viewer control provides options to add, edit, and delete the comments to
* Free text annotation
* Ink annotation
-
+
## Adding a comment to the annotation
-Annotation comment, comment replies, and status can be added to the PDF document using the comment panel.
+
+Annotation comments, replies, and status can be managed to the PDF document using the comment panel.
### Comment panel
@@ -33,78 +34,137 @@ Annotation comments can be added to the PDF using the comment panel. The comment
1. Using the annotation menu
* Click the Edit Annotation button in the PDF Viewer toolbar. A toolbar appears below it.
- * Click the Comment Panel button. A comment panel will appear.
+ * Click the Comment Panel button. The comment panel opens.
2. Using Context menu
- * Select annotation in the PDF document and right-click it.
- * Select the comment option in the context menu that appears.
+ * Select the annotation in the PDF document and right-click it.
+ * Select Comment from the context menu.
3. Using the Mouse click
- * Select annotation in the PDF document and double click it, a comment panel will appear.
+ * Select the annotation in the PDF document and double-click it. The comment panel opens.
-If the comment panel is already in the open state, you can select the annotations and add annotation comments using the comment panel.
+If the comment panel is already open, select the annotation and add comments using the panel.
### Adding comments
-* Select annotation in the PDF document and click it.
-* The selected annotation comment container is highlighted in the comment panel.
-* Now, you can add comment and comment replies using the comment panel.
+* Select the annotation in the PDF document.
+* The corresponding comment thread is highlighted in the comment panel.
+* Add comments and replies using the comment panel.
-
+
### Adding Comment Replies
-* The PDF Viewer control provides an option to add multiple replies to the comment.
-* After adding the annotation comment, you can add a reply to the comment.
+* Multiple replies can be added to a comment.
+* After adding a comment, add replies as needed.
### Adding Comment or Reply Status
-* Select the Annotation Comments in the comment panel.
-* Click the more options button showing in the Comments or reply container.
-* Select the Set Status option in the context menu that appears.
-* Select the status of the annotation comment in the context menu that appears.
+* Select the annotation comment in the comment panel.
+* Click More options in the comment or reply container.
+* Select Set Status from the context menu.
+* Choose a status for the comment.
-
+
### Editing the comments and comments replies of the annotations
-The comment, comment replies, and status of the annotation can be edited using the comment panel.
+Comments, replies, and status can be edited using the comment panel.
### Editing the Comment or Comment Replies
-The annotation comment and comment replies can be edited in the following ways:
+Edit comments and replies in the following ways:
1. Using the Context menu
- * Select the Annotation Comments in the comment panel.
- * Click the More options button showing in the Comments or reply container.
- * Select the Edit option in the context menu that appears.
- * Now, an editable text box appears. You can change the content of the annotation comment or comment reply.
+ * Select the annotation comment in the comment panel.
+ * Click More options in the comment or reply container.
+ * Select Edit from the context menu.
+ * An editable text box appears. Change the content of the comment or reply.
2. Using the Mouse Click
- * Select the annotation comments in the comment panel.
- * Double click the comment or comment reply content.
- * Now, an editable text box appears. You can change the content of the annotation comment or comment reply.
+ * Select the annotation comment in the comment panel.
+ * Double-click the comment or reply content.
+ * An editable text box appears. Change the content of the comment or reply.
### Editing Comment or Reply Status
-* Select the Annotation Comments in the comment panel.
-* Click the more options button showing in the Comments or reply container.
-* Select the Set Status option in the context menu that appears.
-* Select the status of the annotation comment in the context menu that appears.
-* Status ‘None’ is the default state. If the status is set to ‘None,’ the comments or reply does not appear.
+* Select the annotation comment in the comment panel.
+* Click More options in the comment or reply container.
+* Select Set Status from the context menu.
+* Choose a status for the comment.
+* None is the default state. Selecting None clears the status indicator; the comment or reply remains visible.
-
+
### Delete Comment or Comment Replies
-* Select the Annotation Comments in the comment panel.
-* Click the more options button shown in the Comments or reply container.
-* Select the Delete option in the context menu that appears.
+* Select the annotation comment in the comment panel.
+* Click More options in the comment or reply container.
+* Select Delete from the context menu.
+
+
+
+>Deleting the root comment from the comment panel also deletes the associated annotation.
+```html
+
+## How to check the comments added by the user
+
+Comments added to the PDF document can be read using the annotation's `comments` property.
+
+The following example logs comments in response to a button click.
+
+```html
+
+```
+
+{% tabs %}
+{% highlight html tabtitle="Standalone" %}
+
+import { PdfViewer, Toolbar, Magnification, Navigation, Annotation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, TextSearch, FormFields, FormDesigner, PageOrganizer} from '@syncfusion/ej2-pdfviewer';
+
+PdfViewer.Inject(Toolbar, Magnification, Navigation, Annotation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, TextSearch, FormFields, FormDesigner, PageOrganizer);
+
+let pdfviewer: PdfViewer = new PdfViewer();
+pdfviewer.documentPath = "https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf";
+pdfviewer.resourceUrl = "https://cdn.syncfusion.com/ej2/23.1.43/dist/ej2-pdfviewer-lib";
+pdfviewer.appendTo('#PdfViewer');
+
+
+{% endhighlight %}
+{% highlight html tabtitle="Server-Backed" %}
+
+import { PdfViewer, Toolbar, Magnification, Navigation, Annotation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, TextSearch, FormFields, FormDesigner, PageOrganizer} from '@syncfusion/ej2-pdfviewer';
+
+PdfViewer.Inject(Toolbar, Magnification, Navigation, Annotation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, TextSearch, FormFields, FormDesigner, PageOrganizer);
+
+let pdfviewer: PdfViewer = new PdfViewer();
+pdfviewer.serviceUrl = 'https://document.syncfusion.com/web-services/pdf-viewer/api/pdfviewer/';
+pdfviewer.documentPath = "https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf";
+pdfviewer.appendTo('#PdfViewer');
+
+{% endhighlight %}
+{% endtabs %}
-
+```typescript
+//Method to check the comments added in the PDF document.
+document.getElementById('checkComments').addEventListener('click', function () {
+ var annotationCollections = pdfviewer.annotationCollection;
+ for (var x = 0; x < annotationCollections.length; x++) {
+ //Prints the annotation id in the console window.
+ console.log("annotation Id : " +annotationCollections[x].annotationId);
+ var comments = annotationCollections[x].comments;
+ for (var y = 0; y < comments.length; y++) {
+ var comment = comments[y];
+ //Prints the PDF document's comments in the console window.
+ console.log("comment" + "[" + y + "] :" + comment.note);
+ }
+ var note = annotationCollections[x].note;
+ console.log("note : " + note);
+ }
+});
->The annotation will be deleted on deleting the comment using comment panel.
+```
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/annotation/free-text-annotation.md b/Document-Processing/PDF/PDF-Viewer/react/annotation/free-text-annotation.md
index 38397ead7..cf8d844f2 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/annotation/free-text-annotation.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/annotation/free-text-annotation.md
@@ -1,30 +1,30 @@
---
layout: post
-title: Free text annotation in React Pdfviewer component | Syncfusion
-description: Learn here all about Free text annotation in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Free text annotation
+title: Free text annotation in React PDF Viewer control | Syncfusion
+description: Learn about free text annotations in the Syncfusion React PDF Viewer (Essential JS 2): add, edit, delete, and default settings.
+control: PDF Viewer
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---
-# Free text annotation in React Pdfviewer component
+# Free text annotation in React PDF Viewer
-The PDF Viewer control provides the options to add, edit, and delete the free text annotations.
+The PDF Viewer control provides options to add, edit, and delete free text annotations.
-## Adding a free text annotation to the PDF document
+## Add a free text annotation to the PDF document
-The Free text annotations can be added to the PDF document using the annotation toolbar.
+The PDF Viewer control provides options to add, edit, and delete free text annotations.
-* Click the **Edit Annotation** button in the PDF Viewer toolbar. A toolbar appears below it.
-* Select the **Free Text Annotation** button in the annotation toolbar. It enables the Free Text annotation mode.
-* You can add the text over the pages of the PDF document.
+* Click the **Edit Annotation** button in the PDF Viewer toolbar. The annotation toolbar appears below it.
+* Select the **Free Text Annotation** button to enable free text annotation mode.
+* Add text anywhere on the pages of the PDF document.
-In the pan mode, if the free text annotation mode is entered, the PDF Viewer control will switch to text select mode.
+When in pan mode, selecting free text annotation switches the PDF Viewer to text select mode.
-
+
-Refer to the following code sample to switch to the Free Text annotation mode.
+The following example switches to free text annotation mode using a button click.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -49,7 +49,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/25.1.35/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
);
{% endhighlight %}
{% endtabs %}
-## Adding a Free Text annotation to the PDF document Programmatically
+## Add a Free Text annotation to the PDF document Programmatically
-With the PDF Viewer library, you can add a Free Text annotation to the PDF Viewer control programmatically using the [**addAnnotation()**](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#addannotationn) method.
+The PDF Viewer library allows adding a free text annotation programmatically using the [addAnnotation()](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#annotation) method.
-Here's a example of how you can utilize the **addAnnotation()** method to include a Free Text annotation programmatically
+Here is an example of adding a free text annotation programmatically using addAnnotation():
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -145,7 +145,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/25.1.35/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
);
{% endhighlight %}
{% endtabs %}
-## Change the content of an existing Free text annotation programmatically
+## Change the content of an existing free text annotation programmatically
-To change the content of an existing free text annotation in the Syncfusion® PDF viewer programmatically, you can use the **editAnnotation()** method.
+To change the content of an existing free text annotation programmatically, use the editAnnotation() method.
-Here is an example of how you can use the **editAnnotation()** method to change the content of a free text annotation:
+Here is an example of changing the content of a free text annotation using editAnnotation():
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -250,7 +250,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/25.1.35/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
);
{% endhighlight %}
{% endtabs %}
-## Editing the properties of free text annotation
+N> The current version of the PDF Viewer does not edit existing document text. New free text annotations can be added and modified within the document.
-The font family, font size, font styles, font color, text alignment, fill color, the border stroke color, border thickness, and opacity of the free text annotation can be edited using the Font Family tool, Font Size tool, Font Color tool, Text Align tool, Font Style tool Edit Color tool, Edit Stroke Color tool, Edit Thickness tool, and Edit Opacity tool in the annotation toolbar.
+## Edit the properties of free text annotations
-### Editing font family
+Font family, font size, styles, font color, text alignment, fill color, stroke color, border thickness, and opacity can be edited using the Font Family, Font Size, Font Color, Text Align, Font Style, Edit Color, Edit Stroke Color, Edit Thickness, and Edit Opacity tools in the annotation toolbar.
-The font family of the annotation can be edited by selecting the desired font in the Font Family tool.
+### Edit font family
-
+Edit the font family by selecting a font in the Font Family tool.
-### Editing font size
+
-The font size of the annotation can be edited by selecting the desired size in the Font Size tool.
+### Edit font size
-
+Edit the font size by selecting a size in the Font Size tool.
-### Editing font color
+
-The font color of the annotation can be edited using the color palette provided in the Font Color tool.
+### Edit font color
-
+Edit the font color using the color palette in the Font Color tool.
-### Editing the text alignment
+
-The text in the annotation can be aligned by selecting the desired styles in the drop-down pop-up in the Text Align tool.
+### Edit the text alignment
-
+Align text by selecting an option from the Text Align tool.
-### Editing text styles
+
-The style of the text in the annotation can be edited by selecting the desired styles in the drop-down pop-up in the Font Style tool.
+### Edit text styles
-
+Edit text styles by selecting options in the Font Style tool.
-### Editing fill color
+
-The fill color of the annotation can be edited using the color palette provided in the Edit Color tool.
+### Edit fill color
-
+Edit the fill color using the color palette in the Edit Color tool.
-### Editing stroke color
+
-The stroke color of the annotation can be edited using the color palette provided in the Edit Stroke Color tool.
+### Edit stroke color
-
+Edit the stroke color using the color palette in the Edit Stroke Color tool.
-### Editing thickness
+
-The border thickness of the annotation can be edited using the range slider provided in the Edit Thickness tool.
+### Edit thickness
-
+Edit border thickness using the range slider in the Edit Thickness tool.
-### Editing opacity
+
-The opacity of the annotation can be edited using the range slider provided in the Edit Opacity tool.
+### Edit opacity
-
+Edit opacity using the range slider in the Edit Opacity tool.
-## Setting default properties during control initialization
+
-The properties of the free text annotation can be set before creating the control using the FreeTextSettings.
+## Set default properties during control initialization
-After editing the default values, they will be changed to the selected values. Refer to the following code sample to set the default free text annotation settings.
+Default properties for free text annotations can be set before creating the control using FreeTextSettings.
+
+After changing default values, the selected values are applied. The following example sets default free text annotation settings.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -392,7 +394,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/25.1.35/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
freeTextSettings={{fillColor: 'green', borderColor: 'blue', fontColor: 'yellow'}}
style={{ 'height': '640px' }}>
@@ -459,7 +461,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/25.1.35/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
freeTextSettings={{enableAutoFit: true}}
style={{ 'height': '640px' }}>
diff --git a/Document-Processing/PDF/PDF-Viewer/react/annotation/ink-annotation.md b/Document-Processing/PDF/PDF-Viewer/react/annotation/ink-annotation.md
index fb065ac2b..1fc9cf86d 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/annotation/ink-annotation.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/annotation/ink-annotation.md
@@ -1,30 +1,30 @@
---
layout: post
-title: Ink annotation in React Pdfviewer component | Syncfusion
-description: Learn here all about Ink annotation in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Ink annotation
+title: Ink annotation in React PDF Viewer control | Syncfusion
+description: Learn about ink annotations in the Syncfusion React PDF Viewer (Essential JS 2): add, edit, delete, and default settings.
+control: PDF Viewer
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---
-# Ink annotation in React Pdfviewer component
+# Ink annotation in React PDF Viewer
-The PDF Viewer control provides the options to add, edit, and delete the ink annotations.
+The PDF Viewer control provides options to add, edit, and delete ink annotations.
-
+
-## Adding an ink annotation to the PDF document
+## Add an ink annotation to the PDF document
-The ink annotations can be added to the PDF document using the annotation toolbar.
+Ink annotations can be added to the PDF document using the annotation toolbar.
-* Click the **Edit Annotation** button in the PDF Viewer toolbar. A toolbar appears below it.
-* Select the **Draw Ink** button in the annotation toolbar. It enables the ink annotation mode.
-* You can draw anything over the pages of the PDF document.
+* Click the **Edit Annotation** button in the PDF Viewer toolbar. The annotation toolbar appears below it.
+* Select the **Draw Ink** button to enable ink annotation mode.
+* Draw on any page of the PDF document.
- 
+ 
-Refer to the following code sample to switch to the ink annotation mode.
+The following example switches to ink annotation mode.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -49,7 +49,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
);
{% endhighlight %}
{% endtabs %}
-## Adding a Ink annotation to the PDF document Programmatically
+## Add an ink annotation programmatically to the PDF document
-With the PDF Viewer library, you can add a Ink annotation to the PDF Viewer control programmatically using the [**addAnnotation()**](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#addannotationn) method.
+The PDF Viewer library allows adding an ink annotation programmatically using the [addAnnotation()](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#annotation) method.
-Here's a example of how you can utilize the **addAnnotation()** method to include a Ink annotation programmatically
+Here is an example of adding an ink annotation programmatically using addAnnotation():
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -139,7 +139,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/25.1.35/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
);
{% endhighlight %}
{% endtabs %}
-## Edit the existing Ink annotation programmatically
+## Edit an existing ink annotation programmatically
-To modify existing Ink annotation in the Syncfusion® PDF viewer programmatically, you can use the **editAnnotation()** method.
+To modify an existing ink annotation programmatically, use the editAnnotation() method.
-Here is an example of how you can use the **editAnnotation()** method:
+Here is an example of using editAnnotation():
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -239,7 +239,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/25.1.35/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
);
{% endhighlight %}
{% endtabs %}
-## Editing the properties of the ink annotation
+## Edit the properties of ink annotations
-The stroke color, thickness, and opacity of the ink annotation can be edited using the Edit stroke color tool, Edit thickness tool, and Edit opacity tool in the annotation toolbar.
+Stroke color, thickness, and opacity can be edited using the Edit Stroke Color, Edit Thickness, and Edit Opacity tools in the annotation toolbar.
-### Editing stroke color
+### Edit stroke color
-The stroke color of the annotation can be edited using the color palette provided in the Edit Stroke Color tool.
+Edit the stroke color using the color palette in the Edit Stroke Color tool.
-
+
-### Editing thickness
+### Edit thickness
-The thickness of the border of the annotation can be edited using the range slider provided in the Edit Thickness tool.
+Edit thickness using the range slider in the Edit Thickness tool.
-
+
-### Editing opacity
+### Edit opacity
-The opacity of the annotation can be edited using the range slider provided in the Edit Opacity tool.
+Edit opacity using the range slider in the Edit Opacity tool.
-
+
-## Setting default properties during the control initialization
+## Set default properties during the control initialization
-The properties of the ink annotation can be set before creating the control using the InkAnnotationSettings.
+Default properties for ink annotations can be set before creating the control using InkAnnotationSettings.
-After editing the default values, they will be changed to the selected values. Refer to the following code sample to set the default ink annotation settings.
+After changing default values, the selected values are applied.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -348,7 +348,7 @@ function App() {
{ pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
inkAnnotationSettings={{author: 'Syncfusion', strokeColor: 'green', thickness: 3, opacity: 0.6}}
style={{ 'height': '640px' }}>
You can refer to our [React PDF Viewer](https://www.syncfusion.com/React-ui-components/React-pdf-viewer) feature tour page for its groundbreaking feature representations. You can also explore our [React PDF Viewer example](https://github.com/syncfusion/ej2-React-samples/tree/master/src/app/pdfviewer) to know how to render and configure the PDF Viewer.
+N> Refer to the React PDF Viewer [feature tour](https://www.syncfusion.com/pdf-viewer-sdk/react-pdf-viewer) for feature highlights. Explore the [React PDF Viewer examples](https://github.com/SyncfusionExamples/react-pdf-viewer-examples) to learn how to render and configure the PDF Viewer.
diff --git a/Document-Processing/PDF/PDF-Viewer/react/annotation/measurement-annotation.md b/Document-Processing/PDF/PDF-Viewer/react/annotation/measurement-annotation.md
index edf9524e4..d691411a0 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/annotation/measurement-annotation.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/annotation/measurement-annotation.md
@@ -1,16 +1,16 @@
---
layout: post
-title: Measurement annotation in React Pdfviewer component | Syncfusion
-description: Learn here all about Measurement annotation in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Measurement annotation
+title: Measurement annotation in React PDF Viewer control | Syncfusion
+description: Learn about measurement annotations in the Syncfusion React PDF Viewer (Essential JS 2): distance, perimeter, area, radius, and volume.
+control: PDF Viewer
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---
-# Measurement annotation in React Pdfviewer component
+# Measurement annotation in React PDF Viewer
-The PDF Viewer provides the options to add measurement annotations. You can measure the page annotations with the help of measurement annotation. The supported measurement annotations in the PDF Viewer control are:
+The PDF Viewer provides options to add measurement annotations. The supported measurement annotations are:
* Distance
* Perimeter
@@ -18,22 +18,22 @@ The PDF Viewer provides the options to add measurement annotations. You can meas
* Radius
* Volume
-
+
## Adding measurement annotations to the PDF document
The measurement annotations can be added to the PDF document using the annotation toolbar.
* Click the **Edit Annotation** button in the PDF Viewer toolbar. A toolbar appears below it.
-* Click the **Measurement Annotation** dropdown button. A dropdown pop-up will appear and shows the measurement annotations to be added.
-* Select the measurement type to be added to the page in the dropdown pop-up. It enables the selected measurement annotation mode.
-* You can measure and add the annotation over the pages of the PDF document.
+* Click the **Measurement Annotation** drop-down button. The pop-up lists available measurement annotation types.
+* Select a measurement type to enable its annotation mode.
+* Measure and add annotations on the pages of the PDF document.
-In the pan mode, if the measurement annotation mode is entered, the PDF Viewer control will switch to text select mode.
+When in pan mode, selecting a measurement annotation switches the PDF Viewer to text select mode.

-Refer to the following code snippet to switch to distance annotation mode.
+The following example switches to distance annotation mode.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -57,7 +57,7 @@ function App() {
{ pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation,
BookmarkView, ThumbnailView, Print, TextSelection, TextSearch, Annotation,
@@ -108,11 +108,11 @@ root.render();
{% endhighlight %}
{% endtabs %}
-## Adding a measurement annotation to the PDF document Programmatically
+## Add a measurement annotation to the PDF document programmatically
-With the PDF Viewer library, you can add a measurement annotation to the PDF Viewer control programmatically using the [**addAnnotation()**](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#addannotationn) method.
+The PDF Viewer library allows adding measurement annotations programmatically using the [addAnnotation()](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#annotation) method.
-Here's a example of how you can utilize the **addAnnotation()** method to include a measurement annotation programmatically:
+Here is an example showing how to add measurement annotations programmatically using addAnnotation():
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -179,7 +179,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/25.1.35/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
);
{% endhighlight %}
{% endtabs %}
-## Edit the existing measurement annotation programmatically
+## Edit an existing measurement annotation programmatically
-To modify existing measurement annotation in the Syncfusion® PDF viewer programmatically, you can use the **editAnnotation()** method.
+To modify an existing measurement annotation programmatically, use the editAnnotation() method.
-Here is an example of how you can use the **editAnnotation()** method:
+Here is an example of using editAnnotation():
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -362,7 +362,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/25.1.35/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
);
{% endhighlight %}
{% endtabs %}
-## Editing the properties of measurement annotation
+## Edit the properties of measurement annotations
-The fill color, stroke color, thickness, and opacity of the measurement annotation can be edited using the Edit Color tool, Edit Stroke Color tool, Edit Thickness tool, and Edit Opacity tool in the annotation toolbar.
+The fill color, stroke color, thickness, and opacity can be edited using the Edit Color, Edit Stroke Color, Edit Thickness, and Edit Opacity tools in the annotation toolbar.
-### Editing fill color
+### Edit fill color
The fill color of the annotation can be edited using the color palette provided in the Edit Color tool.

-### Editing stroke color
+### Edit stroke color
The stroke color of the annotation can be edited using the color palette provided in the Edit Stroke Color tool.

-### Editing thickness
+### Edit thickness
-The thickness of the border of the annotation can be edited using the range slider provided in the Edit thickness tool.
+Edit border thickness using the range slider provided in the Edit Thickness tool.

-### Editing opacity
+### Edit opacity
The opacity of the annotation can be edited using the range slider provided in the Edit Opacity tool.

-### Editing the line properties
+### Edit the line properties
-The properties of the line shapes such as distance and perimeter annotations can be edited using the Line properties window. It can be opened by selecting the Properties option in the context menu that appears on right-clicking the distance and perimeter annotations.
+Line-based measurement annotations (distance and perimeter) have additional options in the Line Properties window. Open it by right-clicking the annotation and selecting Properties from the context menu.

-## Setting default properties during control initialization
+## Set default properties during control initialization
-The properties of the shape annotations can be set before creating the control using distanceSettings, perimeterSettings, areaSettings, radiusSettings and volumeSettings.
+Default properties for measurement annotations can be set before creating the control using distanceSettings, perimeterSettings, areaSettings, radiusSettings, and volumeSettings.
Refer to the following code snippet to set the default annotation settings.
@@ -531,7 +531,7 @@ export function App() {
{ pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
distanceSettings={{fillColor: 'blue', opacity: 0.6, strokeColor: 'green'}}
perimeterSettings={{fillColor: 'green', opacity: 0.6, strokeColor: 'blue'}}
areaSettings={{fillColor: 'yellow', opacity: 0.6, strokeColor: 'orange'}}
@@ -625,7 +625,7 @@ function App() {
{ pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
measurementSettings={{scaleRatio: 2, conversionUnit: 'cm', displayUnit: 'cm'}}
style={{ 'height': '640px' }}>
diff --git a/Document-Processing/PDF/PDF-Viewer/react/annotation/shape-annotation.md b/Document-Processing/PDF/PDF-Viewer/react/annotation/shape-annotation.md
index 9236cfbf2..73c961aa4 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/annotation/shape-annotation.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/annotation/shape-annotation.md
@@ -1,16 +1,16 @@
---
layout: post
-title: Shape annotation in React Pdfviewer component | Syncfusion
-description: Learn here all about Shape annotation in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Shape annotation
+title: Shape annotation in React PDF Viewer control | Syncfusion
+description: Learn about shape annotations in the Syncfusion React PDF Viewer (Essential JS 2), including add, edit, delete, and default settings.
+control: PDF Viewer
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---
-# Shape annotation in React Pdfviewer component
+# Shape annotation in React PDF Viewer
-The PDF Viewer control provides the options to add, edit, and delete the shape annotations. The shape annotation types supported in the PDF Viewer control are:
+The PDF Viewer control provides options to add, edit, and delete shape annotations. The supported shape annotation types are:
* Line
* Arrow
@@ -18,20 +18,20 @@ The PDF Viewer control provides the options to add, edit, and delete the shape a
* Circle
* Polygon
-
+
## Adding a shape annotation to the PDF document
Shape annotations can be added to the PDF document using the annotation toolbar.
* Click the **Edit Annotation** button in the PDF Viewer toolbar. A toolbar appears below it.
-* Click the **Shape Annotation** drop-down button. A drop-down pop-up will appear and shows the shape annotations to be added.
-* Select the shape types to be added to the page in the drop-down pop-up. It enables the selected shape annotation mode.
-* You can add the shapes over the pages of the PDF document.
+* Click the **Shape Annotation** drop-down button. The pop-up lists available shape annotation types.
+* Select a shape type to enable its annotation mode.
+* Draw the shape on the pages of the PDF document.
-In the pan mode, if the shape annotation mode is entered, the PDF Viewer control will switch to text select mode.
+N> When in pan mode and a shape annotation tool is selected, the PDF Viewer switches to text select mode automatically to ensure a smooth interaction experience.
-
+
Refer to the following code sample to switch to the circle annotation mode.
@@ -57,7 +57,7 @@ function App() {
{ pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
);
{% endhighlight %}
{% endtabs %}
-## Adding a shape annotation to the PDF document Programmatically
+## Add a shape annotation to the PDF document programmatically
-With the PDF Viewer library, you can add a shape annotation to the PDF Viewer control programmatically using the [**addAnnotation()**](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#addannotationn) method.
+The PDF Viewer library allows adding a shape annotation programmatically using the [addAnnotation()](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#annotation) method.
-Here's a example of how you can utilize the **addAnnotation()** method to include a shape annotation programmatically:
+Here is an example showing how to add shape annotations programmatically using addAnnotation():
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -179,7 +179,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/25.1.35/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
);
{% endhighlight %}
{% endtabs %}
-## Edit the existing shape annotation programmatically
+## Edit an existing shape annotation programmatically
-To modify existing shape annotation in the Syncfusion® PDF viewer programmatically, you can use the **editAnnotation()** method.
+To modify an existing shape annotation programmatically, use the editAnnotation() method.
-Here is an example of how you can use the **editAnnotation()** method:
+Here is an example of using editAnnotation():
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -361,7 +361,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/25.1.35/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
);
## Editing the properties of the shape annotation
-The fill color, stroke color, thickness, and opacity of the shape annotation can be edited using the Edit color tool, Edit stroke color tool, Edit thickness tool, and Edit opacity tool in the annotation toolbar.
+The fill color, stroke color, thickness, and opacity of shape annotations can be edited using the Edit Color, Edit Stroke Color, Edit Thickness, and Edit Opacity tools in the annotation toolbar.
### Editing fill color
The fill color of the annotation can be edited using the color palette provided in the Edit Color tool.
-
+
### Editing stroke color
The stroke color of the annotation can be edited using the color palette provided in the Edit Stroke Color tool.
-
+
### Editing thickness
The thickness of the border of the annotation can be edited using the range slider provided in the Edit Thickness tool.
-
+
### Editing opacity
The opacity of the annotation can be edited using the range slider provided in the Edit Opacity tool.
-
+
### Editing the line properties
-The properties of the line shapes such as line and arrow annotations can be edited using the Line Properties window. It can be opened by selecting the Properties option in the context menu that appears on right-clicking the line and arrow annotations.
+Line and arrow annotations have additional options in the Line Properties window. Open it by right-clicking a line or arrow annotation and selecting Properties from the context menu.
Refer to the following code sample to set the default annotation settings.
-
+
### Edit annotation programmatically
@@ -546,9 +546,9 @@ Here is an example of how you can use this method to delete an annotation:
```
-## Setting default properties during the control initialization
+## Set default properties during the control initialization
-The properties of the shape annotations can be set before creating the control using LineSettings, ArrowSettings, RectangleSettings, CircleSettings, and PolygonSettings.
+Default properties for shape annotations can be set before creating the control using LineSettings, ArrowSettings, RectangleSettings, CircleSettings, and PolygonSettings.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -567,7 +567,7 @@ function App() {
{ pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
lineSettings={{fillColor: 'blue', opacity: 0.6, strokeColor: 'green'}}
arrowSettings={{fillColor: 'green', opacity: 0.6, strokeColor: 'blue'}}
rectangleSettings={{fillColor: 'yellow', opacity: 0.6, strokeColor: 'orange'}}
diff --git a/Document-Processing/PDF/PDF-Viewer/react/annotation/signature-annotation.md b/Document-Processing/PDF/PDF-Viewer/react/annotation/signature-annotation.md
index 1ba197e66..2a3550eb4 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/annotation/signature-annotation.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/annotation/signature-annotation.md
@@ -1,33 +1,33 @@
---
layout: post
-title: Handwritten signature in React PDF Viewer component | Syncfusion
-description: Learn here all about handwritten signature in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Handwritten signature
+title: Handwritten signature in React PDF Viewer control | Syncfusion
+description: Learn about handwritten signatures in the Syncfusion React PDF Viewer (Essential JS 2): add, enable/disable, and edit properties.
+control: PDF Viewer
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---
-# Handwritten signature in React PDF Viewer component
+# Handwritten signature in React PDF Viewer
-The PDF Viewer control supports adding handwritten signatures to a PDF document. The handwritten signature reduces the paper work of reviewing the content and verifies it digitally.
+The PDF Viewer control supports adding handwritten signatures to a PDF document. Handwritten signatures reduce paperwork and enable digital verification.
## Adding a handwritten signature to the PDF document
The handwritten signature can be added to the PDF document using the annotation toolbar.
* Click the **Edit Annotation** button in the PDF Viewer toolbar. A toolbar appears below it.
-* Select the **HandWritten Signature** button in the annotation toolbar. The signature panel will appear.
+* Select the **HandWritten Signature** button in the annotation toolbar. The signature panel appears.
-
+
-* Draw the signature in the signature panel.
+* Draw the signature in the panel.
-
+
-* Then click **Create** button and move the signature using the mouse and place them in the desired location.
+* Click **Create**, move the signature, and place it at the desired location.
-
+
Refer to the following code sample to switch to the handwritten signature mode programmatically.
@@ -53,7 +53,7 @@ function App() {
@@ -103,9 +103,9 @@ root.render();
{% endhighlight %}
{% endtabs %}
-## How to enable the handwritten signature
+## Enable the handwritten signature
-The following code snippet describes how to enable the handwritten signature in PDF Viewer. When the value is set to `false` it disables the handwritten signature.
+The following example enables or disables the handwritten signature in the PDF Viewer. Setting the value to `false` disables the feature.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -125,7 +125,7 @@ function App() {
@@ -176,11 +176,11 @@ root.render();
{% endhighlight %}
{% endtabs %}
-## Adding Handwritten signature to the PDF document Programmatically
+## Add a handwritten signature programmatically to the PDF document
With the PDF Viewer library, you can programmatically add handwritten signature to the PDF Viewer control using the [**addAnnotation()**](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#addannotation) method.
-Here is an example of how you can use the **addAnnotation()** method to add the Handwritten signature programmatically
+Here is an example of adding a handwritten signature programmatically using addAnnotation():
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -240,7 +240,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/27.1.48/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
@@ -328,24 +328,24 @@ root.render();
[View sample in GitHub](https://github.com/SyncfusionExamples/react-pdf-viewer-examples/blob/master/How%20to/Add%20Handwritten%20Signature%20Programmatically)
-## Editing the properties of handwritten signature
+## Edit the properties of handwritten signatures
-The stroke color, border thickness, and opacity of the handwritten signature can be edited using the edit stroke color tool, edit thickness tool, and edit opacity tool in the annotation toolbar.
+Stroke color, border thickness, and opacity can be edited using the Edit Stroke Color, Edit Thickness, and Edit Opacity tools in the annotation toolbar.
-### Editing stroke color
+### Edit stroke color
-The stroke color of the annotation can be edited using the color palette provided in the Edit Stroke Color tool.
+Edit the stroke color using the color palette in the Edit Stroke Color tool.
-
+
-### Editing thickness
+### Edit thickness
-The thickness of the border of the annotation can be edited using the range slider provided in the Edit Thickness tool.
+Edit border thickness using the range slider in the Edit Thickness tool.
-
+
-### Editing opacity
+### Edit opacity
-The opacity of the annotation can be edited using the range slider provided in the Edit Opacity tool.
+Edit opacity using the range slider in the Edit Opacity tool.
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/annotation/stamp-annotation.md b/Document-Processing/PDF/PDF-Viewer/react/annotation/stamp-annotation.md
index d670eac46..5726449e4 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/annotation/stamp-annotation.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/annotation/stamp-annotation.md
@@ -2,15 +2,15 @@
layout: post
title: Stamp annotation in React Pdfviewer component | Syncfusion
description: Learn here all about Stamp annotation in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Stamp annotation
+control: PDF Viewer
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---
-# Stamp annotation in React Pdfviewer component
+# Stamp annotation in React PDF Viewer
-The PDF Viewer control provides options to add, edit, delete, and rotate the following stamp annotation in the PDF documents:
+The PDF Viewer control provides options to add, edit, delete, and rotate the following stamp annotations in PDF documents:
* Dynamic
* Sign Here
@@ -19,24 +19,24 @@ The PDF Viewer control provides options to add, edit, delete, and rotate the fol

-## Adding stamp annotations to the PDF document
+## Add stamp annotations to the PDF document
The stamp annotations can be added to the PDF document using the annotation toolbar.
* Click the **Edit Annotation** button in the PDF Viewer toolbar. A toolbar appears below it.
-* Click the **Stamp Annotation** drop-down button. A drop-down pop-up will appear and shows the stamp annotations to be added.
+* Click the **Stamp Annotation** drop-down button. The pop-up lists available stamp annotation types.

-* Select the annotation type to be added to the page in the pop-up.
+* Select a stamp type to enable its annotation mode.

-* You can add the annotation over the pages of the PDF document.
+* Place the stamp on the pages of the PDF document.
-In the pan mode, if the stamp annotation mode is entered, the PDF Viewer control will switch to text select mode.
+N> When in pan mode and a stamp annotation tool is selected, the PDF Viewer switches to text select mode automatically for a smooth interaction experience.
-Refer to the following code sample to switch to the stamp annotation mode.
+The following examples switch to stamp annotation modes.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -69,7 +69,7 @@ function App() {
);
{% endhighlight %}
{% endtabs %}
-## Adding custom stamp to the PDF document
+## Add a custom stamp to the PDF document
* Click the **Edit Annotation** button in the PDF Viewer toolbar. A toolbar appears below it.
-* Click the **Stamp Annotation** drop-down button. A drop-down pop-up will appear and shows the stamp annotations to be added.
+* Click the **Stamp Annotation** drop-down button. The pop-up lists available stamp annotation types.
* Click the Custom Stamp button.

-* The file explorer dialog will appear, choose the image and then add the image to the PDF page.
+* In the file explorer dialog, choose an image and add it to the PDF page.
->The JPG and JPEG image format is only supported in the custom stamp annotations.
+>Only JPG and JPEG image formats are supported for custom stamp annotations.
-## Adding a Stamp annotation to the PDF document Programmatically
+## Add a stamp annotation to the PDF document programmatically
-With the PDF Viewer library, you can add a Stamp annotation to the PDF Viewer control programmatically using the [**addAnnotation()**](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#addannotationn) method.
+The PDF Viewer library allows adding a stamp annotation programmatically using the [addAnnotation()](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#annotation) method.
-Here's a example of how you can utilize the **addAnnotation()** method to include a Stamp annotation programmatically:
+Here are examples showing how to add stamp annotations programmatically using addAnnotation():
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -211,7 +211,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/25.1.35/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
);
{% endhighlight %}
{% endtabs %}
-## Edit the existing sticky note annotation programmatically
+## Edit an existing stamp annotation programmatically
-To modify existing sticky note annotation in the Syncfusion® PDF viewer programmatically, you can use the **editAnnotation()** method.
+To modify an existing stamp annotation programmatically, use the editAnnotation() method.
-Here is an example of how you can use the **editAnnotation()** method:
+Here is an example of using editAnnotation():
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -341,7 +341,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/25.1.35/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
);
{% endhighlight %}
{% endtabs %}
-## Setting default properties during control initialization
+## Set default properties during control initialization
-The properties of the stamp annotation can be set before creating the control using the StampSettings.
+Default properties for stamp annotations can be set before creating the control using StampSettings.
-After editing the default opacity using the Edit Opacity tool, they will be changed to the selected values.
-Refer to the following code sample to set the default sticky note annotation settings.
+After changing default opacity using the Edit Opacity tool, the selected value is applied. The following example sets default stamp annotation settings.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -426,7 +425,7 @@ function App() {
{ pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
stampSettings={{opacity: 0.3, author: 'Guest User'}}
style={{ 'height': '640px' }}>
diff --git a/Document-Processing/PDF/PDF-Viewer/react/annotation/sticky-notes-annotation.md b/Document-Processing/PDF/PDF-Viewer/react/annotation/sticky-notes-annotation.md
index 1c1c46b3a..a91ffa294 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/annotation/sticky-notes-annotation.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/annotation/sticky-notes-annotation.md
@@ -1,26 +1,26 @@
---
layout: post
-title: Sticky notes annotation in React Pdfviewer component | Syncfusion
-description: Learn here all about Sticky notes annotation in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Sticky notes annotation
+title: Sticky notes in React PDF Viewer control | Syncfusion
+description: Learn about sticky note annotations in the Syncfusion React PDF Viewer (Essential JS 2): add, edit, delete, and default settings.
+control: PDF Viewer
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---
-# Sticky notes annotation in React Pdfviewer component
+# Sticky notes annotation in React PDF Viewer
-The PDF Viewer control provides the options to add, edit, and delete the sticky note annotations in the PDF document.
+The PDF Viewer control provides options to add, edit, and delete sticky note annotations in the PDF document.

-## Adding a sticky note annotation to the PDF document
+## Add a sticky note annotation to the PDF document
-Sticky note annotations can be added to the PDF document using the annotation toolbar.
+Annotation comments can be added using the comment panel.
-* Click the **Comments** button in the PDF Viewer toolbar. A toolbar appears below it.
-* Click the position where you want to add sticky note annotation in the PDF document.
-* Sticky note annotation will be added in the clicked positions.
+* Select a sticky note annotation in the PDF document and right-click it.
+* Select Comment from the context menu.
+* Add comments, replies, and status using the comment panel.

@@ -33,11 +33,11 @@ Sticky note annotations can be added to the PDF document using the annotation to

-## Adding a sticky note annotation to the PDF document Programmatically
+## Add a sticky note annotation to the PDF document programmatically
-With the PDF Viewer library, you can add a sticky note annotation to the PDF Viewer control programmatically using the [**addAnnotation()**](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#addannotationn) method.
+With the PDF Viewer library, you can add a sticky note annotation to the PDF Viewer control programmatically using the [**addAnnotation()**](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#annotation) method.
-Here's a example of how you can utilize the **addAnnotation()** method to include a sticky note annotation programmatically:
+Here is an example showing how to add a sticky note annotation programmatically using addAnnotation():
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -67,7 +67,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/25.1.35/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
);
{% endhighlight %}
{% endtabs %}
-## Edit the existing sticky note annotation programmatically
+## Edit an existing sticky note annotation programmatically
-To modify existing sticky note annotation in the Syncfusion® PDF viewer programmatically, you can use the **editAnnotation()** method.
+To modify an existing sticky note annotation programmatically, use the editAnnotation() method.
-Here is an example of how you can use the **editAnnotation()** method:
+Here is an example of using editAnnotation():
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -162,7 +162,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/25.1.35/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
);
{% endhighlight %}
{% endtabs %}
-## Editing the properties of the sticky note annotation
+## Edit the properties of sticky note annotations
### Editing opacity
-The opacity of the annotation can be edited using the range slider provided in the Edit Opacity tool.
+Edit opacity using the range slider in the Edit Opacity tool.

### Editing comments
-The comment, comment reply, and comment status of the annotation can be edited using the Comment Panel.
+Comment text, replies, and status can be edited using the comment panel.
-* Open the comment panel using the Comment Panel button showing in the annotation toolbar.
+* Open the comment panel using the Comment Panel button in the annotation toolbar.

-You can modify or delete the comments or comments replay and it’s status using the menu option provided in the comment panel.
+Modify or delete comments or replies, and change status using the menu options in the comment panel.

-## Setting default properties during the control initialization
+## Set default properties during control initialization
-The properties of the sticky note annotation can be set before creating the control using the StickyNoteSettings.
+Default properties for sticky note annotations can be set before creating the control using StickyNotesSettings.
-After editing the default opacity using the Edit Opacity tool, they will be changed to the selected values. Refer to the following code sample to set the default sticky note annotation settings.
+After changing default opacity using the Edit Opacity tool, the selected value is applied. The following example sets default sticky note annotation settings.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -266,7 +266,7 @@ function App() {
{ pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
stickyNotesSettings={{author: 'Syncfusion'}}
style={{ 'height': '640px' }}>
@@ -314,9 +314,9 @@ root.render();
{% endhighlight %}
{% endtabs %}
-## Disabling sticky note annotations
+## Disable sticky note annotations
-The PDF Viewer control provides an option to disable the sticky note annotations feature. The code sample for disabling the feature is as follows.
+The PDF Viewer control provides an option to disable sticky note annotations. The following example disables the feature.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -335,7 +335,7 @@ function App() {
{ pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
enableStickyNotesAnnotation={false}
style={{ 'height': '640px' }}>
diff --git a/Document-Processing/PDF/PDF-Viewer/react/annotation/text-markup-annotation.md b/Document-Processing/PDF/PDF-Viewer/react/annotation/text-markup-annotation.md
index 26d1055e2..77b9737e5 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/annotation/text-markup-annotation.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/annotation/text-markup-annotation.md
@@ -1,38 +1,38 @@
---
layout: post
-title: Text markup annotation in React Pdfviewer component | Syncfusion
-description: Learn here all about Text markup annotation in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Text markup annotation
+title: Text markup annotation in React PDF Viewer | Syncfusion
+description: Learn to add, edit, delete, and customize text markup annotations like highlight, underline, and squiggly in Syncfusion React PDF Viewer.
+control: PDF Viewer
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---
-# Text markup annotation in React Pdfviewer component
+# Text markup annotation in React PDF Viewer
-The PDF Viewer control provides the options to add, edit, and delete text markup annotations such as highlight, underline, strikethrough and squiggly annotations in the PDF document.
+The PDF Viewer provides options to add, edit, and delete text markup annotations, including Highlight, Underline, Strikethrough, and Squiggly.

-## Highlight a text
+## Highlight text
-There are two ways to highlight a text in the PDF document:
+There are two ways to highlight text:
1.Using the context menu
- * Select a text in the PDF document and right-click it.
- * Select **Highlight** option in the context menu that appears.
+* Select text in the PDF document and right-click it.
+* Select **Highlight** in the context menu.

2.Using the annotation toolbar
- * Click the **Edit Annotation** button in the PDF Viewer toolbar. A toolbar appears below it.
- * Select the **Highlight** button in the annotation toolbar. It enables the highlight mode.
- * Select the text and the highlight annotation will be added.
- * You can also select the text and apply the highlight annotation using the **Highlight** button.
+* Click the **Edit Annotation** button in the PDF Viewer toolbar to open the annotation toolbar.
+* Select **Highlight** to enable highlight mode.
+* Select text to add the highlight annotation.
+* Alternatively, select text first and then click **Highlight**.

-In the pan mode, if the highlight mode is entered, the PDF Viewer control will switch to text select mode to enable the text selection for highlighting the text.
+When pan mode is active and a text markup mode is entered, the PDF Viewer switches to text selection mode to enable selection.
Refer to the following code snippet to switch to highlight mode.
@@ -60,7 +60,7 @@ function App() {
{ pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
{ pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
);
{% endhighlight %}
{% endtabs %}
-## Highlight a text programmatically
+## Highlight text programmatically
-The PDF Viewer library enables you to programmatically highlight text within the PDF Viewer control using the [**addAnnotation()**](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#addannotationn) method.
+Programmatically add highlights using the [addAnnotation](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#addannotation) method.
-Here's an example of how you can use the **addAnnotation()** method to apply highlighting programmatically:
+Example:
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -234,7 +234,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/25.1.35/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
);
{% endhighlight %}
{% endtabs %}
-## Underline a text
+## Underline text
-There are two ways to underline a text in the PDF document:
+There are two ways to underline text:
1.Using the context menu
- * Select a text in the PDF document and right-click it.
- * Select **Underline** option in the context menu that appears.
+* Select text in the PDF document and right-click it.
+* Select **Underline** in the context menu.

2.Using the annotation toolbar
- * Click the **Edit Annotation** button in the PDF Viewer toolbar. A toolbar appears below it.
- * Select the **Underline** button in the annotation toolbar. It enables the underline mode.
- * Select the text and the underline annotation will be added.
- * You can also select the text and apply the underline annotation using the **Underline** button.
+* Click the **Edit Annotation** button in the PDF Viewer toolbar to open the annotation toolbar.
+* Select **Underline** to enable underline mode.
+* Select text to add the underline annotation.
+* Alternatively, select text first and then click **Underline**.

@@ -335,7 +335,7 @@ function App() {
{ pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
{ pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
@@ -474,11 +474,11 @@ root.render();
{% endhighlight %}
{% endtabs %}
-## Underline a text programmatically
+## Underline text programmatically
-The PDF Viewer library enables you to programmatically Underline text within the PDF Viewer control using the [**addAnnotation()**](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#addannotationn) method.
+Programmatically add underlines using the [addAnnotation](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#addannotation) method.
-Here's an example of how you can use the **addAnnotation()** method to apply Underline programmatically:
+Example:
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -507,7 +507,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/25.1.35/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
);
{% endhighlight %}
{% endtabs %}
-## Strikethrough a text
+## Strikethrough text
-There are two ways to strikethrough a text in the PDF document:
+There are two ways to strikethrough text:
1.Using the context menu
- * Select a text in the PDF document and right-click it.
- * Select **Strikethrough** option in the context menu that appears.
+* Select text in the PDF document and right-click it.
+* Select **Strikethrough** in the context menu.

2.Using the annotation toolbar
- * Click the **Edit Annotation** button in the PDF Viewer toolbar. A toolbar appears below it.
- * Select the **Strikethrough** button in the annotation toolbar. It enables the strikethrough mode.
- * Select the text and the strikethrough annotation will be added.
- * You can also select the text and apply the strikethrough annotation using the **Strikethrough** button.
+* Click the **Edit Annotation** button in the PDF Viewer toolbar to open the annotation toolbar.
+* Select **Strikethrough** to enable strikethrough mode.
+* Select text to add the strikethrough annotation.
+* Alternatively, select text first and then click **Strikethrough**.

@@ -608,7 +608,7 @@ function App() {
{ pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
{ pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
@@ -752,11 +752,11 @@ root.render();
{% endhighlight %}
{% endtabs %}
-## Strikethrough a text programmatically
+## Strikethrough text programmatically
-The PDF Viewer library enables you to programmatically Strikethrough text within the PDF Viewer control using the [**addAnnotation()**](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#addannotationn) method.
+Programmatically add strikethrough using the [addAnnotation](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#addannotation) method.
-Here's an example of how you can use the **addAnnotation()** method to apply Strikethrough programmatically:
+Example:
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -785,7 +785,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/25.1.35/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
);
{% endhighlight %}
{% endtabs %}
-## Squiggly a text
+## Add squiggly to text
-There are two ways to add squiggly to a text in the PDF document:
+There are two ways to add squiggly to text:
1.Using the context menu
- * Select a text in the PDF document and right-click it.
- * Select **Squiggly** option in the context menu that appears.
+* Select text in the PDF document and right-click it.
+* Select **Squiggly** in the context menu.

2.Using the annotation toolbar
- * Click the **Edit Annotation** button in the PDF Viewer toolbar. A toolbar appears below it.
- * Select the **Squiggly** button in the annotation toolbar. It enables the squiggly mode.
- * Select the text and the squiggly annotation will be added.
- * You can also select the text and apply the squiggly annotation using the **Squiggly** button.
+* Click the **Edit Annotation** button in the PDF Viewer toolbar to open the annotation toolbar.
+* Select **Squiggly** to enable squiggly mode.
+* Select text to add the squiggly annotation.
+* Alternatively, select text first and then click **Squiggly**.

@@ -886,7 +886,7 @@ function App() {
{ pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/30.1.37/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
{ pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/30.1.37/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
@@ -1030,11 +1030,11 @@ root.render();
{% endhighlight %}
{% endtabs %}
-## Squiggly a text programmatically
+## Add squiggly to text programmatically
-The PDF Viewer library enables you to programmatically Squiggly text within the PDF Viewer control using the [**addAnnotation()**](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#addannotationn) method.
+Programmatically add squiggly using the [addAnnotation](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotation/#addannotation) method.
-Here's an example of how you can use the **addAnnotation()** method to apply Squiggly programmatically:
+Example:
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -1063,7 +1063,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/30.1.37/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
);
## Deleting a text markup annotation
-The selected annotation can be deleted by the following ways:
+The selected annotation can be deleted in the following ways:
-1.Using Delete key
- * Select the annotation to be deleted.
- * Click the Delete key in the keyboard. The selected annotation will be deleted.
+1.Using the Delete/Backspace key
+ * Select the annotation.
+ * Press Delete (or Backspace). The selected annotation is removed.
2.Using the annotation toolbar
- * Select the annotation to be deleted.
- * Click the **Delete Annotation** button in the annotation toolbar. The selected annotation will be deleted.
+ * Select the annotation.
+ * Click **Delete Annotation** in the annotation toolbar. The selected annotation is removed.

-## Editing the properties of the text markup annotation
+## Edit text markup annotation properties
The color and the opacity of the text markup annotation can be edited using the Edit Color tool and the Edit Opacity tool in the annotation toolbar.
-### Editing color
+### Edit color
-The color of the annotation can be edited using the color palette provided in the Edit Color tool.
+Use the color palette in the Edit Color tool to change the annotation color.

-### Editing opacity
+### Edit opacity
-The opacity of the annotation can be edited using the range slider provided in the Edit Opacity tool.
+Use the range slider in the Edit Opacity tool to change annotation opacity.

-## Setting default properties during control initialization
+## Set default properties during control initialization
-The properties of the text markup annotation can be set before creating the control using highlightSettings, underlineSettings, strikethroughSettings and squigglySettings.
+Set default properties before creating the control using `highlightSettings`, `underlineSettings`, `strikethroughSettings`, and `squigglySettings`.
->After editing the default color and opacity using the Edit Color tool and Edit Opacity tool, they will be changed to the selected values.
+> After editing default color and opacity using the Edit Color and Edit Opacity tools, the values update to the selected settings.
Refer to the following code snippet to set the default annotation settings.
@@ -1176,7 +1176,7 @@ function App() {
{ pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/30.1.37/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}
highlightSettings = {{author: 'Guest User', subject: 'Important', color: '#ffff00', opacity: 0.9, modifiedDate: ''}}
underlineSettings = {{author: 'Guest User', subject: 'Points to be remembered', color: '#00ffff', opacity: 0.9,modifiedDate: ''}}
@@ -1233,22 +1233,22 @@ root.render();
{% endhighlight %}
{% endtabs %}
-## Performing undo and redo
+## Perform undo and redo
-The PDF Viewer performs undo and redo for the changes made in the PDF document. In text markup annotation, undo and redo actions are provided for:
+The PDF Viewer supports undo and redo for changes. For text markup annotations, undo and redo are provided for:
* Inclusion of the text markup annotations.
* Deletion of the text markup annotations.
* Change of either color or opacity of the text markup annotations.
- Undo and redo actions can be done by the following ways:
+Undo and redo actions can be performed in the following ways:
1.Using keyboard shortcuts:
- After performing a text markup annotation action, you can undo it by using Ctrl + Z shortcut and redo by using Ctrl + Y shortcut.
-2.Using toolbar:
- Undo and redo can be done using the **Undo** tool and **Redo** tool provided in the toolbar.
+ After performing a text markup annotation action, press Ctrl+Z to undo and Ctrl+Y to redo.
+2.Using the toolbar:
+ Use the **Undo** and **Redo** tools in the toolbar.
-Refer to the following code snippet for calling undo and redo actions from the client-side.
+Refer to the following code snippet to call undo and redo actions from the client side.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -1279,7 +1279,7 @@ function App() {
{ pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
@@ -1338,17 +1338,17 @@ root.render();
{% endhighlight %}
{% endtabs %}
-## Saving the text markup annotation
+## Save text markup annotations
-When you click the download tool in the toolbar, the text markup annotations will be saved in the PDF document. This action will not affect the original document.
+Click the download tool in the toolbar to save text markup annotations to the PDF document. The original document is not modified.
-## Printing the text markup annotation
+## Print text markup annotations
-When the print tool is selected in the toolbar, the PDF document will be printed along with the text markup annotations added to the pages. This action will not affect the original document.
+Click the print tool in the toolbar to print the PDF document with text markup annotations. The original document is not modified.
-## Disabling text markup annotation
+## Disable text markup annotation
-The PDF Viewer control provides an option to disable the text markup annotation feature. The code snippet for disabling the feature is as follows.
+Disable text markup annotations using the `enableTextMarkupAnnotation` property.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -1369,7 +1369,7 @@ function App() {
{ pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
enableTextMarkupAnnotation = {false}
style={{ 'height': '640px' }}>
@@ -1424,4 +1424,4 @@ root.render();
## See also
* [Toolbar items](../../pdfviewer/toolbar)
-* [Feature Modules](../../pdfviewer/feature-module)
\ No newline at end of file
+* [Feature modules](../../pdfviewer/feature-module)
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/download.md b/Document-Processing/PDF/PDF-Viewer/react/download.md
index f9802e7b9..aee7e65e2 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/download.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/download.md
@@ -2,12 +2,12 @@
layout: post
title: Download in React Pdfviewer component | Syncfusion
description: Learn here all about Download in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Download
+control: PDF Viewer
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---
-# Download in React Pdfviewer component
+# Download in React PDF Viewer control
The PDF Viewer supports downloading the loaded PDF file. You can enable/disable the download using the following code snippet.
@@ -39,7 +39,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
diff --git a/Document-Processing/PDF/PDF-Viewer/react/events.md b/Document-Processing/PDF/PDF-Viewer/react/events.md
new file mode 100644
index 000000000..d6fece65f
--- /dev/null
+++ b/Document-Processing/PDF/PDF-Viewer/react/events.md
@@ -0,0 +1,1869 @@
+---
+layout: post
+title: Events in React PDF Viewer | Syncfusion
+description: Comprehensive list of events in the Syncfusion React PDF Viewer with descriptions, event arguments, and usage examples to integrate custom logic.
+platform: document-processing
+control: PDF Viewer
+documentation: ug
+domainurl: ##DomainURL##
+---
+
+# Events in React PDF Viewer
+
+The PDF Viewer component triggers events for creation, page navigation, document life cycle, context menu interactions, comments, bookmarks, download and export, hyperlinks, annotation import/export, custom keyboard commands, printing, signatures, text search, and text selection. Use these events to integrate custom logic into application workflows.
+
+The following table lists commonly used events supported by the PDF Viewer component:
+
+| Event | Description |
+| ----- | ----------- |
+| [`bookmarkClick`](#bookmarkclick) | Triggers when a bookmark item is clicked in the bookmark panel. |
+| [`buttonFieldClick`](#buttonfieldclick) | Triggers when a button form field is clicked. |
+| [`commentAdd`](#commentadd) | Triggers when a comment is added to the comment panel. |
+| [`commentDelete`](#commentdelete) | Triggers when a comment is deleted from the comment panel. |
+| [`commentEdit`](#commentedit) | Triggers when a comment is edited in the comment panel. |
+| [`commentSelect`](#commentselect) | Triggers when a comment is selected in the comment panel. |
+| [`commentStatusChanged`](#commentstatuschanged) | Triggers when a comment’s status changes in the comment panel. |
+| [`created`](#created) | Triggers during the creation of the PDF Viewer component. |
+| [`customContextMenuBeforeOpen`](#customcontextmenubeforeopen) | Fires before the custom context menu opens. |
+| [`customContextMenuSelect`](#customcontextmenuselect) | Fires when a custom context menu item is selected. |
+| [`documentLoad`](#documentload) | Triggers while loading a document into the PDF Viewer. |
+| [`documentLoadFailed`](#documentloadfailed) | Triggers when document loading fails. |
+| [`documentUnload`](#documentunload) | Triggers when the document is closed. |
+| [`downloadEnd`](#downloadend) | Triggers after a document is downloaded. |
+| [`downloadStart`](#downloadstart) | Triggers when the download action is initiated. |
+| [`exportFailed`](#exportfailed) | Triggers when exporting annotations fails. |
+| [`exportStart`](#exportstart) | Triggers when exporting annotations starts. |
+| [`exportSuccess`](#exportsuccess) | Triggers when annotations are exported successfully. |
+| [`extractTextCompleted`](#extracttextcompleted) | Triggers when text extraction is completed. |
+| [`hyperlinkClick`](#hyperlinkclick) | Triggers when a hyperlink is clicked. |
+| [`hyperlinkMouseOver`](#hyperlinkmouseover) | Triggers when hovering over a hyperlink. |
+| [`importFailed`](#importfailed) | Triggers when importing annotations fails. |
+| [`importStart`](#importstart) | Triggers when importing annotations starts. |
+| [`importSuccess`](#importsuccess) | Triggers when annotations are imported successfully. |
+| [`keyboardCustomCommands`](#keyboardcustomcommands) | Triggers when customized keyboard command keys are pressed. |
+| [`moveSignature`](#movesignature) | Triggers when a signature is moved across the page. |
+| [`pageChange`](#pagechange) | Triggers when the current page number changes. |
+| [`pageClick`](#pageclick) | Triggers when a mouse click occurs on a page. |
+| [`pageMouseover`](#pagemouseover) | Triggers when moving the mouse over a page. |
+| [`pageOrganizerSaveAs`](#pageorganizersaveas) | Triggers when a `save as` action is performed in the page organizer. |
+| [`pageRenderComplete`](#pagerendercomplete) | Triggers after a page finishes rendering. |
+| [`pageRenderInitiate`](#pagerenderinitiate) | Triggers when page rendering begins. |
+| [`printEnd`](#printend) | Triggers when a print action is completed. |
+| [`printStart`](#printstart) | Triggers when a print action is initiated. |
+| [`removeSignature`](#removesignature) | Triggers when a signature is removed. |
+| [`resizeSignature`](#resizesignature) | Triggers when a signature is resized. |
+| [`resourcesLoaded`](#resourcesloaded) | Triggers after PDFium resources are loaded. |
+| [`signaturePropertiesChange`](#signaturepropertieschange) | Triggers when signature properties are changed. |
+| [`signatureSelect`](#signatureselect) | Triggers when a signature is selected. |
+| [`signatureUnselect`](#signatureunselect) | Triggers when a signature is unselected. |
+| [`textSearchComplete`](#textsearchcomplete) | Triggers when a text search is completed. |
+| [`textSearchHighlight`](#textsearchhighlight) | Triggers when the searched text is highlighted. |
+| [`textSearchStart`](#textsearchstart) | Triggers when a text search is initiated. |
+| [`textSelectionEnd`](#textselectionend) | Triggers when text selection is complete. |
+| [`textSelectionStart`](#textselectionstart) | Triggers when text selection is initiated. |
+| [`thumbnailClick`](#thumbnailclick) | Triggers when a thumbnail is clicked. |
+| [`toolbarClick`](#toolbarclick) | Triggers when a toolbar item is clicked. |
+| [`validateFormFields`](#validateformfields) | Triggers when form field validation fails. |
+| [`zoomChange`](#zoomchange) | Triggers when the magnification value changes. |
+
+Note: For annotation and signature events, see the dedicated Annotations Events topic.
+
+## bookmarkClick
+
+The [bookmarkClick](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#bookmarkclickevent) event triggers when a bookmark item is clicked in the bookmark panel.
+
+- Event arguments: [BookmarkClickEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/bookmarkClickEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Bookmark clicked: ${args.name}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## toolbarClick
+
+The [toolbarClick](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#toolbarclickevent) event triggers when a toolbar item is clicked. Use it to handle actions based on the clicked item's id or name.
+
+- Event arguments: `ClickEventArgs`.
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Toolbar item clicked: ${args.name}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## validateFormFields
+
+The [validateFormFields](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#validateformfieldsevent) event triggers when form field validation fails, typically before a download or submit action proceeds. Use this event to inspect which required fields are empty and show custom messages or block application logic if needed.
+
+- Event arguments: [ValidateFormFieldsArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/validateFormFieldsArgs/)
+ - name: Event name
+ - documentName: Current document name
+ - formField: The last interacted field’s data (if applicable)
+ - nonFillableFields: Array detailing required/invalid fields
+
+When it triggers
+- Add a form field and mark it Required (UI: right‑click field > Properties > Required).
+- Leave the field empty and click Download. The event fires and provides the list of fields that failed validation.
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log('form field event name:', args.name);
+ console.log('form field document name:', args.documentName);
+ console.log('form field data:', args.formField);
+ console.log('non fillable form field details:', args.nonFillableFields);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+Tip
+- To require a field programmatically, set isRequired: true when creating or editing the field via Form Designer APIs.
+
+## zoomChange
+
+The [zoomChange](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#zoomchangeevent) event triggers when the magnification value changes.
+
+- Event arguments: [ZoomChangeEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/zoomChangeEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Zoom changed to: ${args.zoomValue}%`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## buttonFieldClick
+
+The [buttonFieldClick](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#buttonfieldclickevent) event triggers when a button form field is clicked.
+
+- Event arguments: [ButtonFieldClickEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/buttonFieldClickEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Button field clicked. Name: ${args.name}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## commentAdd
+
+The [commentAdd](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#commentaddevent) event triggers when a comment is added in the comment panel.
+
+- Event arguments: [CommentEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/commentEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Comment added. Id: ${args.id}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## commentDelete
+
+The [commentDelete](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#commentdeleteevent) event triggers when a comment is deleted in the comment panel.
+
+- Event arguments: [CommentEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/commentEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Comment deleted. Id: ${args.id}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## commentEdit
+
+The [commentEdit](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#commenteditevent) event triggers when a comment is edited in the comment panel.
+
+- Event arguments: [CommentEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/commentEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Comment edited. Id: ${args.id}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## commentSelect
+
+The [commentSelect](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#commentselectevent) event triggers when a comment is selected in the comment panel.
+
+- Event arguments: [CommentEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/commentEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Comment selected. Id: ${args.id}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## commentStatusChanged
+
+The [commentStatusChanged](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#commentstatuschangedevent) event triggers when a comment status is changed in the comment panel.
+
+- Event arguments: [CommentEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/commentEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Comment status changed. Id: ${args.id}, Status: ${args.status}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## created
+
+The [created](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#createdevent) event is triggered during the creation of the PDF Viewer component.
+
+- Event arguments: `void`.
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log('PDF Viewer created');
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## customContextMenuBeforeOpen
+
+The [customContextMenuBeforeOpen](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#customcontextmenubeforeopenevent) event fires just before the context menu is shown. Use it to show or hide items based on the current state (for example, only show search items when text is selected).
+
+- Event arguments: [CustomContextMenuBeforeOpenEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/customContextMenuBeforeOpenEventArgs/)
+ - name: Event name
+ - ids: Array of menu item ids that will be shown; remove ids to hide items for this open
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ const menuItems = React.useMemo(() => ([
+ {
+ text: 'SEARCH_ON_WEB',
+ id: 'web_search',
+ iconCss: 'e-icons e-search',
+ items: [
+ { text: 'SEARCH_IN_GOOGLE_IMAGE', id: 'web_search_images' },
+ { text: 'SEARCH_IN_WIKIPEDIA', id: 'web_search_wikipedia' },
+ { text: 'SEARCH_IN_YOUTUBE', id: 'web_search_youtube' },
+ { text: 'SEARCH_GOOGLE', id: 'web_search_google' },
+ ],
+ },
+ { id: 'web_search_separator', separator: true },
+ ]), []);
+
+ return (
+ {
+ console.log(`Before open context menu at page ${args.name}`);
+ }}
+ documentLoad={() => {
+ viewer.current.addCustomMenu(menuItems, false, false);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## customContextMenuSelect
+
+The [customContextMenuSelect](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#customcontextmenuselectevent) event fires when a custom menu item is clicked. Use it to branch logic by the clicked item's id.
+
+- Event arguments: [CustomContextMenuSelectEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/customContextMenuSelectEventArgs/).
+
+- name: Event name
+- id: The id of the clicked menu item
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ const menuItems = React.useMemo(() => ([
+ {
+ text: 'SEARCH_ON_WEB',
+ id: 'web_search',
+ iconCss: 'e-icons e-search',
+ items: [
+ { text: 'SEARCH_IN_GOOGLE_IMAGE', id: 'web_search_images' },
+ { text: 'SEARCH_IN_WIKIPEDIA', id: 'web_search_wikipedia' },
+ { text: 'SEARCH_IN_YOUTUBE', id: 'web_search_youtube' },
+ { text: 'SEARCH_GOOGLE', id: 'web_search_google' },
+ ],
+ },
+ { id: 'web_search_separator', separator: true },
+ ]), []);
+
+ return (
+ {
+ console.log(`Context menu item selected: ${args.name}`);
+ }}
+ documentLoad={() => {
+ viewer.current.addCustomMenu(menuItems, false, false);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## documentLoad
+
+The [documentLoad](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#documentloadevent) event occurs after a document is successfully loaded and parsed.
+
+- Event arguments: [LoadEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/loadEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Document loaded: page count = ${args.pageData}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## documentLoadFailed
+
+The [documentLoadFailed](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#documentloadfailedevent) event triggers when loading a document fails.
+
+- Event arguments: [LoadFailedEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/loadFailedEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Load failed. Error: ${args.documentName}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## documentUnload
+
+The [documentUnload](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#documentunloadevent) event triggers when closing the current document.
+
+- Event arguments: [UnloadEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/unloadEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log('Document unloaded');
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## downloadEnd
+
+The [downloadEnd](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#downloadendevent) event triggers after a document download completes.
+
+- Event arguments: [DownloadEndEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/downloadEndEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Download finished. File name: ${args.fileName}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## downloadStart
+
+The [downloadStart](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#downloadstartevent) event triggers when the download operation is initiated.
+
+- Event arguments: [DownloadStartEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/downloadStartEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log('Download started');
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## exportFailed
+
+The [exportFailed](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#exportfailedevent) event triggers when exporting annotations fails.
+
+- Event arguments: [ExportFailureEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/exportFailureEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Export failed: ${args.name}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## exportStart
+
+The [exportStart](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#exportstartevent) event triggers when exporting annotations starts.
+
+- Event arguments: [ExportStartEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/exportStartEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log('Export started');
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## exportSuccess
+
+The [exportSuccess](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#exportsuccessevent) event triggers when annotations are exported successfully.
+
+- Event arguments: [ExportSuccessEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/exportSuccessEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log('Export success');
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## extractTextCompleted
+
+The [extractTextCompleted](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#extracttextcompletedevent) event triggers when text extraction completes.
+
+- Event arguments: [ExtractTextCompletedEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/extractTextCompletedEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Extracted text length: ${(args.documentTextCollection || '').length}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## hyperlinkClick
+
+The [hyperlinkClick](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#hyperlinkclickevent) event triggers when a hyperlink is clicked.
+
+- Event arguments: [HyperlinkClickEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/hyperlinkClickEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Hyperlink clicked: ${args.hyperlink}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## hyperlinkMouseOver
+
+The [hyperlinkMouseOver](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#hyperlinkmouseoverevent) event triggers when hovering over a hyperlink.
+
+- Event arguments: HyperlinkMouseOverArgs.
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Hyperlink hover at page: ${args.name}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## importFailed
+
+The [importFailed](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#importfailedevent) event triggers when importing annotations fails.
+
+- Event arguments: [ImportFailureEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/importFailureEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Import failed: ${args.name}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## importStart
+
+The [importStart](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#importstartevent) event triggers when importing annotations starts.
+
+- Event arguments: [ImportStartEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/importStartEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log('Import started');
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## importSuccess
+
+The [importSuccess](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#importsuccessevent) event triggers when annotations are imported successfully.
+
+- Event arguments: [ImportSuccessEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/importSuccessEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log('Import success');
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## keyboardCustomCommands
+
+The [keyboardCustomCommands](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#keyboardcustomcommandsevent) event triggers when customized keyboard command keys are pressed.
+
+- Event arguments: [KeyboardCustomCommandsEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/keyboardCustomCommandsEventArgs/).
+
+ - name: Event name
+ - keyboardCommand: The command metadata raised by Command Manager
+
+When it triggers
+- After registering gestures in commandManager.keyboardCommand. For example, pressing Shift + Alt + G or Shift + Alt + H triggers the event. Use this to handle custom keyboard shortcuts.
+
+Refer to [Keyboard interaction](./accessibility#keyboard-interaction) for details about adding and handling custom shortcut keys.
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+
+ const onCreated = React.useCallback(() => {
+ if (viewer.current) {
+ viewer.current.commandManager = {
+ keyboardCommand: [
+ { name: 'customCopy', gesture: { pdfKeys: PdfKeys.G, modifierKeys: ModifierKeys.Shift | ModifierKeys.Alt } },
+ { name: 'customPaste', gesture: { pdfKeys: PdfKeys.H, modifierKeys: ModifierKeys.Shift | ModifierKeys.Alt } },
+ { name: 'customCut', gesture: { pdfKeys: PdfKeys.Z, modifierKeys: ModifierKeys.Control } },
+ { name: 'customSelectAll', gesture: { pdfKeys: PdfKeys.E, modifierKeys: ModifierKeys.Control } },
+ ],
+ };
+ }
+ }, []);
+
+ return (
+ {
+ console.log('Custom command triggered:', args);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## moveSignature
+
+The [moveSignature](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#movesignatureevent) event triggers when a signature is moved across the page.
+
+- Event arguments: `MoveSignatureEventArgs`.
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Signature moved on page ${args.id}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## pageChange
+
+The [pageChange](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#pagechangeevent) event triggers when the current page number changes (for example, via scrolling or navigation controls).
+
+- Event arguments: [PageChangeEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/pageChangeEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Page changed from ${args.previousPageNumber} to ${args.currentPageNumber}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## pageClick
+
+The [pageClick](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#pageclickevent) event triggers when a mouse click occurs on a page.
+
+- Event arguments: [PageClickEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/pageClickEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Page ${args.pageNumber} clicked at (${args.x}, ${args.y})`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## pageMouseover
+
+The [pageMouseover](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#pagemouseoverevent) event triggers when the mouse moves over a page.
+
+- Event arguments: `PageMouseoverEventArgs`.
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Mouse over page ${args.name}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## pageOrganizerSaveAs
+
+The [pageOrganizerSaveAs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#pageorganizersaveasevent) event triggers when a Save As action is performed in the page organizer.
+
+- Event arguments: `PageOrganizerSaveAsEventArgs`.
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Page organizer save triggered. File name: ${args.downloadDocument}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## pageRenderComplete
+
+The [pageRenderComplete](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#pagerendercompleteevent) event triggers after a page finishes rendering.
+
+- Event arguments: [PageRenderCompleteEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/pageRenderCompleteEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Page ${args.data} rendering completed.`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## pageRenderInitiate
+
+The [pageRenderInitiate](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#pagerenderinitiateevent) event triggers when page rendering begins.
+
+- Event arguments: [PageRenderInitiateEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/pageRenderInitiateEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Page ${args.jsonData} rendering initiated.`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## printEnd
+
+The [printEnd](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#printendevent) event triggers when a print action completes.
+
+- Event arguments: [PrintEndEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/printEndEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log('Print action completed.');
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## printStart
+
+The [printStart](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#printstartevent) event triggers when a print action is initiated.
+
+- Event arguments: [PrintStartEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/printStartEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log('Print action initiated.');
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## removeSignature
+
+The [removeSignature](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#removesignatureevent) event triggers when a signature is removed.
+
+- Event arguments: [RemoveSignatureEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/removeSignatureEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Signature removed from page ${args.bounds}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## resizeSignature
+
+The [resizeSignature](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#resizesignatureevent) event triggers when a signature is resized.
+
+- Event arguments: [ResizeSignatureEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/resizeSignatureEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Signature resized on page ${args.currentPosition}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## resourcesLoaded
+
+The [resourcesLoaded](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#resourcesloadedevent) event triggers after the viewer's required resources are loaded.
+
+- Event arguments: `void`.
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log('PDFium resources loaded.');
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## signaturePropertiesChange
+
+The [signaturePropertiesChange](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#signaturepropertieschangeevent) event triggers when signature properties change.
+
+- Event arguments: [SignaturePropertiesChangeEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/signaturePropertiesChangeEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Signature properties changed on page ${args.type}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## signatureSelect
+
+The [signatureSelect](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#signatureselectevent) event triggers when a signature is selected.
+
+- Event arguments: [SignatureSelectEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/signatureSelectEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Signature selected on page ${args.signature}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## signatureUnselect
+
+The [signatureUnselect](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#signatureunselectevent) event triggers when a signature is unselected.
+
+- Event arguments: [SignatureUnselectEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/signatureUnselectEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Signature unselected ${args.signature}`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## textSearchComplete
+
+The [textSearchComplete](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#textsearchcompleteevent) event triggers when a text search completes.
+
+- Event arguments: [TextSearchCompleteEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/textSearchCompleteEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log('Text search completed.');
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## textSearchHighlight
+
+The [textSearchHighlight](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#textsearchhighlightevent) event triggers when searched text is highlighted.
+
+- Event arguments: [TextSearchHighlightEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/textSearchHighlightEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Search result ${args.bounds} highlighted.`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## textSearchStart
+
+The [textSearchStart](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#textsearchstartevent) event triggers when a text search is initiated.
+
+- Event arguments: [TextSearchStartEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/textSearchStartEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Text search started for: "${args.searchText}"`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## textSelectionEnd
+
+The [textSelectionEnd](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#textselectionendevent) event triggers when text selection is complete.
+
+- Event arguments: [TextSelectionEndEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/textSelectionEndEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Text selection ended on page ${args.pageIndex}.`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## textSelectionStart
+
+The [textSelectionStart](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#textselectionstartevent) event triggers when text selection is initiated.
+
+- Event arguments: `TextSelectionStartEventArgs`.
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Text selection started on page ${args.pageIndex}.`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+## thumbnailClick
+
+The [thumbnailClick](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#thumbnailclickevent) event triggers when a thumbnail is clicked.
+
+- Event arguments: [ThumbnailClickEventArgs](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/thumbnailClickEventArgs/).
+
+Example:
+
+```jsx
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, Annotation, FormDesigner, FormFields, PageOrganizer, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ const viewer = React.useRef(null);
+ return (
+ {
+ console.log(`Thumbnail clicked for page index ${args.pageNumber}.`);
+ }}
+ style={{ height: '600px' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('pdfViewer'));
+root.render();
+```
+
+> Tip: For annotation and signature-specific events and arguments, see the dedicated Annotations Events topic.
+
+See also:
+
+- [Annotation events](./annotation/annotation-event)
+- [Form field events](./form-designer/form-field-events)
+- [Organize PDF events](./organize-pdf/organize-pdf-events)
diff --git a/Document-Processing/PDF/PDF-Viewer/react/feature-module.md b/Document-Processing/PDF/PDF-Viewer/react/feature-module.md
index 440dbc1ee..e6f2a2406 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/feature-module.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/feature-module.md
@@ -2,30 +2,30 @@
layout: post
title: Feature module in React Pdfviewer component | Syncfusion
description: Learn here all about Feature module in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Feature module
+control: PDF Viewer
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---
-# Feature module in React Pdfviewer component
+# Feature module in React PDF Viewer Control
The PDF Viewer features are segregated into individual feature-wise modules to enable selectively referencing in the application. The required modules should be injected to extend its functionality. The following are the selective modules of PDF Viewer that can be included as required:
-The available PdfViewer modules are:
-
-* **Toolbar**:- Built-in toolbar for better user interaction.
-* **Magnification**:- Perform zooming operation for better viewing experience.
-* **Navigation**:- Easy navigation across the PDF pages.
-* **LinkAnnotation**:- Easy navigation within and outside of the PDF document.
-* **ThumbnailView**:- Easy navigation with in the PDF document.
-* **BookmarkView**:- Easy navigation based on the bookmark content of the PDF document.
-* **TextSelection**:- Select and copy text from a PDF file.
-* **TextSearch**:- Search a text easily across the PDF document.
-* **Print**:- Print the entire document or a specific page directly from the browser.
-* **Annotation**:- Annotations can be added or edited in the PDF document.
-* **FormFields**:- Preserve the form fields in the PDF document.
-* **FormDesigner**:- Form fields can be added or edited in the PDF document.
+The available PDF Viewer modules are:
+
+* [**Toolbar**](./toolbar-customization/annotation-toolbar-customization): Built-in toolbar for user interaction.
+* [**Magnification**](./magnification): Perform zoom operations for a better viewing experience.
+* [**Navigation**](./interactive-pdf-navigation/page-navigation): Navigate across pages.
+* [**LinkAnnotation**](./interactive-pdf-navigation/hyperlink-navigation): Navigate within the document or to external destinations via hyperlinks.
+* [**ThumbnailView**](./interactive-pdf-navigation/page-thumbnail-navigation): Navigate within the document using page thumbnails.
+* [**BookmarkView**](./interactive-pdf-navigation/bookmark-navigation): Navigate using document bookmarks (table of contents).
+* [**TextSelection**](./textselection): Select and copy text from the document.
+* [**TextSearch**](./text-search): Search for text across the document.
+* [**Print**](./print): Print the entire document or specific pages directly from the browser.
+* [**Annotation**](./annotation/text-markup-annotation): Add and edit annotations.
+* [**FormFields**](./form-designer/create-programmatically): Work with form fields in the document.
+* [**FormDesigner**](./form-designer/create-programmatically): Add or edit form fields in the document.
>In addition to injecting the required modules in your application, enable corresponding properties to extend the functionality for a PDF Viewer instance.
Refer to the following table.
diff --git a/Document-Processing/PDF/PDF-Viewer/react/form-designer/create-programmatically.md b/Document-Processing/PDF/PDF-Viewer/react/form-designer/create-programmatically.md
index 4d0405d2b..e8bd923b0 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/form-designer/create-programmatically.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/form-designer/create-programmatically.md
@@ -1,29 +1,28 @@
---
layout: post
-title: Create programmatically in React Pdfviewer component | Syncfusion
-description: Learn here all about Create programmatically in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Create programmatically
+title: Create form fields in the React PDF Viewer component | Syncfusion
+description: Learn how to add, update, delete, save, print, validate, and import/export form fields in the Syncfusion React PDF Viewer component.
+control: PDF Viewer
platform: document-processing
documentation: ug
-domainurl: ##DomainURL##
---
-# Create programmatically in React Pdfviewer component
+# Create programmatically in React PDF Viewer control
-The PDF Viewer control provides the option to add, edit and delete the Form Fields. The Form Fields type supported by the PDF Viewer Control are:
+The PDF Viewer component provides options to add, edit, and delete form fields. The supported form field types are:
- * Textbox
- * Password
- * CheckBox
- * RadioButton
- * ListBox
- * DropDown
- * SignatureField
- * InitialField
+- Textbox
+- Password
+- CheckBox
+- RadioButton
+- ListBox
+- DropDown
+- Signature field
+- Initial field
## Add a form field to PDF document programmatically
-Using addFormField method, the form fields can be added to the PDF document programmatically. We need to pass two parameters in this method. They are Form Field Type and Properties of Form Field Type. To add form field programmatically, Use the following code.
+Use the addFormField method to add form fields programmatically. Pass the form field type and the corresponding property object as parameters. The following example demonstrates adding multiple fields on document load.
{% tabs %}
{% highlight js tabtitle="index.JSX" %}
@@ -64,7 +63,7 @@ function App() {
@@ -117,7 +116,7 @@ export function App() {
@@ -133,14 +132,14 @@ root.render();
{% endhighlight %}
{% endtabs %}
-N> To set up the **server-backed PDF Viewer**, add the following `serviceUrl` within the
element in either the `index.TSX` or `index.JSX` file:
-**serviceUrl="https://document.syncfusion.com/web-services/pdf-viewer/api/pdfviewer"**.
+N> To configure the server-backed PDF Viewer, add the following `serviceUrl` in the `index.ts` file:
+`pdfviewer.serviceUrl = 'https://document.syncfusion.com/web-services/pdf-viewer/api/pdfviewer/';`
{% previewsample "Document-Processing/code-snippet/pdfviewer/react/addformfield-cs1/index.html" %}
## Edit/Update form field programmatically
-Using updateFormField method, Form Field can be updated programmatically. We should get the Form Field object/Id from FormFieldCollections property that you would like to edit and pass it as a parameter to updateFormField method. The second parameter should be the properties that you would like to update for Form Field programmatically. We have updated the value and background Color properties of Textbox Form Field.
+Use the updateFormField method to modify a form field programmatically. Retrieve the target field from the formFieldCollections property (by object or ID) and pass it as the first parameter. Provide the properties to update as the second parameter. The following example updates the background color of a Textbox field.
{% tabs %}
{% highlight js tabtitle="index.JSX" %}
@@ -182,7 +181,7 @@ export function App() {
@@ -235,7 +234,7 @@ export function App() {
@@ -251,14 +250,14 @@ root.render();
{% endhighlight %}
{% endtabs %}
-N> To set up the **server-backed PDF Viewer**, add the following `serviceUrl` within the
element in either the `index.TSX` or `index.JSX` file:
-**serviceUrl="https://document.syncfusion.com/web-services/pdf-viewer/api/pdfviewer"**.
+N> To configure the server-backed PDF Viewer, add the following `serviceUrl` in the `index.ts` file:
+`pdfviewer.serviceUrl = 'https://document.syncfusion.com/web-services/pdf-viewer/api/pdfviewer/';`
{% previewsample "Document-Processing/code-snippet/pdfviewer/react/updateformfield-cs1/index.html" %}
## Delete form field programmatically
-Using deleteFormField method, the form field can be deleted programmatically. We should retrieve the Form Field object/Id from FormFieldCollections property that you would like to delete and pass it as a parameter to deleteFormField method. To delete a Form Field programmatically, use the following code.
+Use the deleteFormField method to remove a form field programmatically. Retrieve the target field from the formFieldCollections property (by object or ID) and pass it to deleteFormField. The following example deletes the first form field.
{% tabs %}
{% highlight js tabtitle="index.JSX" %}
@@ -300,7 +299,7 @@ export function App() {
@@ -353,7 +352,7 @@ export function App() {
@@ -369,14 +368,14 @@ root.render();
{% endhighlight %}
{% endtabs %}
-N> To set up the **server-backed PDF Viewer**, add the following `serviceUrl` within the
element in either the `index.TSX` or `index.JSX` file:
-**serviceUrl="https://document.syncfusion.com/web-services/pdf-viewer/api/pdfviewer"**.
+N> To configure the server-backed PDF Viewer, add the following `serviceUrl` in the `index.ts` file:
+`pdfviewer.serviceUrl = 'https://document.syncfusion.com/web-services/pdf-viewer/api/pdfviewer/';`
{% previewsample "Document-Processing/code-snippet/pdfviewer/react/deleteformfield-cs1/index.html" %}
## setFormFieldMode programmatically
-The `setFormFieldMode` method is a function in the Syncfusion® React PDF Viewer library that allows you to add a form field dynamically by passing the type of the form field. You can pass the form fields as a parameter like below.
+The setFormFieldMode method enables adding a form field dynamically by specifying the field type. For example, the following adds a Password field when a button is clicked.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -399,7 +398,7 @@ function App() {
);
## Saving the form fields
-When the download icon is selected on the toolbar, the Form Fields will be saved in the PDF document and this action will not affect the original document. Refer the below GIF for further reference.
+Selecting the Download icon on the toolbar saves the form fields in the exported PDF without modifying the original document. See the following GIF for reference.
-
+
-You can invoke download action using following code snippet.,
+You can invoke the download action using the following code snippet.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -479,7 +478,7 @@ function App() {
{ pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
);
## Printing the form fields
-When the print icon is selected on the toolbar, the PDF document will be printed along with the Form Fields added to the pages and this action will not affect the original document. Refer the below GIF for further reference.
+Selecting the Print icon on the toolbar prints the PDF with the added form fields. This action does not modify the original document. See the following GIF for reference.
-
+
+
+You can invoke the print action using the following code snippet:
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -553,7 +554,7 @@ function App() {
{ pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
enablePrint={true}
style={{ 'height': '640px' }}>
@@ -603,15 +604,15 @@ root.render();
## Open the existing PDF document
-We can open the already saved PDF document contains Form Fields in it by clicking the open icon in the toolbar. Refer the below GIF for further reference.
+Open a PDF that already contains form fields by clicking the Open icon on the toolbar. See the following GIF for reference.
-
+
## Validate form fields
-The form fields in the PDF Document will be validated when the `enableFormFieldsValidation` is set to true and hook the validateFormFields. The validateFormFields will be triggered when the PDF document is downloaded or printed with the non-filled form fields. The non-filled fields will be obtained in the `nonFillableFields` property of the event arguments of validateFormFields.
+Form fields are validated when enableFormFieldsValidation is set to true and the validateFormFields event is handled. The event triggers during download or print if required fields are not filled. The non-filled fields are available in the nonFillableFields property of the event arguments.
-Add the following code snippet to validate the form fields,
+Add the following code to validate form fields:
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -638,7 +639,7 @@ function App() {
{ pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/form-designer.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
documentLoad={documentLoaded}
enableFormFieldsValidation={true}
ValidateFormFields= {validateFormFields}
@@ -700,11 +701,11 @@ root.render();
## Export and import form fields
-The PDF Viewer control provides the support to export and import the form field data in the following formats using the methods `importFormFields`, `exportFormFields`, `exportFormFieldsAsObject`.
+The PDF Viewer component supports exporting and importing form field data using the importFormFields, exportFormFields, and exportFormFieldsAsObject methods in the following formats:
-* FDF
-* XFDF
-* JSON
+- FDF
+- XFDF
+- JSON
### Export and import as FDF
@@ -713,7 +714,7 @@ Using the `exportFormFields` method, the form field data can be exported in the
* The first one must be the destination path for the exported data. If path is not specified, it will ask for the location while exporting.
* The second parameter should be the format type of the form data.
-The following code explains how to export and import the form field data as FDF.
+The following example exports and imports form field data as FDF.
```
@@ -740,7 +741,7 @@ function OnImportFdf() {
### Export and import as XFDF
-The following code explains how to export and import the form field data as XFDF.
+The following example exports and imports form field data as XFDF.
```
@@ -767,7 +768,7 @@ function OnImportXfdf(){
### Export and import as JSON
-The following code explains how to export and import the form field data as JSON.
+The following example exports and imports form field data as JSON.
```
@@ -794,7 +795,7 @@ function OnImportJson(){
### Export and import as Object
-The PDF Viewer control supports exporting the form field data as an object, and the exported data will be imported into the current PDF document from the object.
+The PDF Viewer component supports exporting the form field data as an object and importing that data back into the current PDF document.
The following code shows how to export the form field data as an object and import the form field data from that object into the current PDF document via a button click.
@@ -832,20 +833,20 @@ function importData(){
```
## Form field properties
-Form field properties in Syncfusion® PDF Viewer allow you to customize and interact with form fields embedded within PDF documents. This documentation provides an overview of the form field properties supported by the Syncfusion® PDF Viewer and explains how to use them effectively.
+Form field properties allow customization and interaction with fields embedded in PDF documents. The following sections outline the supported field types and their configurable settings.
- * Textbox
- * Password
- * CheckBox
- * RadioButton
- * ListBox
- * DropDown
- * SignatureField
- * InitialField
+- Textbox
+- Password
+- CheckBox
+- RadioButton
+- ListBox
+- DropDown
+- Signature field
+- Initial field
### Signature and initial fields settings
-Using the `updateFormField` method, the form fields can be updated programmatically.
+Use the updateFormField method to modify form fields programmatically.
The following code example explains how to update the signature field properties on a button click.
@@ -870,7 +871,7 @@ function updateProperties(){
}
```
-The following code example explains how to update the properties of the signature field added to the document from the form designer toolbar.
+The following code shows how to configure default properties for a signature field added from the Form Designer toolbar.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -923,7 +924,7 @@ return (
{/* Inject the required services */}
@@ -1005,10 +1006,10 @@ root.render();
{% endhighlight %}
{% endtabs %}
-
+
-The following code example explains how to update the properties of the initial field added to the document from the form designer toolbar.
+The following code shows how to configure default properties for an initial field added from the Form Designer toolbar.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -1052,7 +1053,7 @@ return (
{/* Inject the required services */}
@@ -1126,13 +1127,13 @@ root.render();
{% endtabs %}
-
+
### Textbox field settings
Using the `updateFormField` method, the form fields can be updated programmatically.
-The following code example explains how to update the Textbox field properties on a button click.
+The following example updates Textbox field properties on a button click.
```html
@@ -1166,7 +1167,7 @@ The following code example explains how to update the Textbox field properties o
}
```
-The following code example explains how to update the properties of the Textbox field added to the document from the form designer toolbar.
+The following code shows how to configure default properties for a Textbox field added from the Form Designer toolbar.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -1225,7 +1226,7 @@ return (
{/* Inject the required services */}
@@ -1312,13 +1313,13 @@ root.render();
{% endhighlight %}
{% endtabs %}
-
+
### Password field settings
Using the `updateFormField` method, the form fields can be updated programmatically.
-The following code example explains how to update the Password field properties on a button click.
+The following example updates Password field properties on a button click.
```html
@@ -1351,7 +1352,7 @@ The following code example explains how to update the Password field properties
}
```
-The following code example explains how to update the properties of the Password field added to the document from the form designer toolbar.
+The following code shows how to configure default properties for a Password field added from the Form Designer toolbar.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -1408,7 +1409,7 @@ return (
{/* Inject the required services */}
@@ -1494,13 +1495,13 @@ root.render();
{% endhighlight %}
{% endtabs %}
-
+
### CheckBox field settings
Using the `updateFormField` method, the form fields can be updated programmatically.
-The following code example explains how to update the CheckBox field properties on a button click.
+The following example updates CheckBox field properties on a button click.
```html
@@ -1527,7 +1528,7 @@ The following code example explains how to update the CheckBox field properties
}
```
-The following code example explains how to update the properties of the CheckBox field added to the document from the form designer toolbar.
+The following code shows how to configure default properties for a CheckBox field added from the Form Designer toolbar.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -1574,7 +1575,7 @@ return (
@@ -1655,13 +1656,13 @@ root.render();
{% endtabs %}
-
+
### RadioButton field settings
Using the `updateFormField` method, the form fields can be updated programmatically.
-The following code example explains how to update the RadioButton field properties on a button click.
+The following example updates RadioButton field properties on a button click.
```html
@@ -1688,7 +1689,7 @@ The following code example explains how to update the RadioButton field properti
}
```
-The following code example explains how to update the properties of the RadioButton field added to the document from the form designer toolbar.
+The following code shows how to configure default properties for a RadioButton field added from the Form Designer toolbar.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -1737,7 +1738,7 @@ return (
@@ -1819,13 +1820,13 @@ root.render();
{% endhighlight %}
{% endtabs %}
-
+
### ListBox field settings
Using the `updateFormField` method, the form fields can be updated programmatically.
-The following code example explains how to update the ListBox field properties on a button click.
+The following example updates ListBox field properties on a button click.
```html
@@ -1859,7 +1860,7 @@ The following code example explains how to update the ListBox field properties o
```
-The following code example explains how to update the properties of the ListBox field added to the document from the form designer toolbar.
+The following code shows how to configure default properties for a ListBox field added from the Form Designer toolbar.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -1916,7 +1917,7 @@ return (
@@ -2004,13 +2005,13 @@ root.render();
{% endhighlight %}
{% endtabs %}
-
+
### DropDown field settings
Using the `updateFormField` method, the form fields can be updated programmatically.
-The following code example explains how to update the DropDown field properties on a button click.
+The following example updates DropDown field properties on a button click.
```typescript
@@ -2040,7 +2041,7 @@ The following code example explains how to update the DropDown field properties
```
-The following code example explains how to update the properties of the DropDown field added to the document from the form designer toolbar.
+The following code shows how to configure default properties for a DropDown field added from the Form Designer toolbar.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -2097,7 +2098,7 @@ return (
@@ -2188,4 +2189,4 @@ root.render();
{% endtabs %}
-
\ No newline at end of file
+
diff --git a/Document-Processing/PDF/PDF-Viewer/react/form-designer/create-with-user-interface-interaction.md b/Document-Processing/PDF/PDF-Viewer/react/form-designer/create-with-user-interface-interaction.md
index 4a0f011b1..a3068725c 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/form-designer/create-with-user-interface-interaction.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/form-designer/create-with-user-interface-interaction.md
@@ -1,29 +1,28 @@
---
layout: post
-title: User interaction in React Pdfviewer component | Syncfusion
-description: Learn here all about Create with user interface interaction in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Create with user interface interaction
+title: Design form fields in the React PDF Viewer component | Syncfusion
+description: Learn how to add, drag, resize, edit, and manage form fields using the UI in the Syncfusion React PDF Viewer component.
+control: PDF Viewer
platform: document-processing
documentation: ug
-domainurl: ##DomainURL##
---
-# Create with user interface interaction
+# Create with user interface interaction for React
-The PDF viewer control provides the option for interaction with Form Fields such as Drag and resize. you can draw a Form Field dynamically by clicking the Form Field icon on the toolbar and draw it in the PDF document. The Form Fields type supported by the PDF Viewer Control are:
+The PDF Viewer component supports interactive form field design, including drawing, dragging, and resizing fields directly on the page. Click the Form Field icon on the toolbar to add a field and place it on the document. Supported form field types include:
- * Textbox
- * Password
- * CheckBox
- * RadioButton
- * ListBox
- * DropDown
- * SignatureField
- * InitialField
+- Textbox
+- Password
+- CheckBox
+- RadioButton
+- ListBox
+- DropDown
+- Signature field
+- Initial field
## Enable or Disable form designer toolbar
-We should inject FormDesigner module and set enableFormDesignerToolbar as true to enable the Form designer icon on the toolbar. By default, enableFormDesignerToolbar is set as true. Use the following code to inject FormDesigner module and to enable the enableFormDesignerToolbar property.
+Inject the FormDesigner module and set enableFormDesignerToolbar to true to display the Form Designer icon on the toolbar. The default value is true. Use the following code to enable the toolbar option.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -44,7 +43,7 @@ function App() {
id="container"
ref={(scope) => { pdfviewer = scope; }}
documentPath="https://cdn.syncfusion.com/content/pdf/form-designer.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
enableFormDesignerToolbar={true}
style={{ 'height': '640px' }}>
@@ -96,41 +95,41 @@ root.render();
## Add the form field dynamically
-Click the Form Field icon on the toolbar and then click on to the PDF document to draw a Form Field. Refer the below GIF for further reference.
+Click the Form Field icon on the toolbar, then click on the PDF to draw a form field. See the following GIF for reference.
-
+
## Drag the form field
-We provide options to drag the Form Field which is currently selected in the PDF document. Refer the below GIF for further reference.
+Drag the selected form field to reposition it within the PDF document. See the following GIF for reference.
-
+
## Resize the form field
-We provide options to resize the Form Field which is currently selected in the PDF document. Refer the below GIF for further reference.
+Resize the selected form field using the resize handles on the field boundary. See the following GIF for reference.
-
+
## Edit or Update the form field dynamically
-The properties of the Form Fields can be edited using the Form Field Properties window. It can be opened by selecting the Properties option in the context menu that appears on the right by clicking the Form Field object. Refer the below image for the properties available to customize the appearance of the Form Field.
+Edit form field properties using the Form Field Properties dialog. Open it by right-clicking a form field and selecting Properties from the context menu. The following images show examples of available settings.
-
+
-
+
-
+
## Clipboard operation with form field
-The PDF Viewer control supports the clipboard operations such as cut, copy and paste for Form Fields. You can right click on the Form Field object to view the context menu and select to the clipboard options that you would like to perform. Refer the below image for the options in the context menu.
+The PDF Viewer supports clipboard operations such as cut, copy, and paste for form fields. Right-click a form field to open the context menu and choose the desired clipboard action. The following image shows the available options.
-
+
## Undo and Redo
-We provided support to undo/redo the Form Field actions that are performed at runtime. Use the following code example to perform undo/redo actions.
+Undo and redo actions are supported for runtime changes made to form fields. Use the following code to perform undo and redo operations.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -161,7 +160,7 @@ function App() {
id="container"
ref={(scope) => { pdfviewer = scope; }}
documentPath="https://cdn.syncfusion.com/content/pdf/form-designer.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ 'height': '640px' }}>
@@ -85,7 +85,7 @@ export function App() {
@@ -125,7 +125,7 @@ function App() {
@@ -158,7 +158,7 @@ export function App() {
@@ -198,7 +198,7 @@ function App() {
@@ -231,7 +231,7 @@ export function App() {
@@ -271,7 +271,7 @@ function App() {
@@ -304,7 +304,7 @@ export function App() {
@@ -344,7 +344,7 @@ function App() {
@@ -377,7 +377,7 @@ export function App() {
@@ -419,7 +419,7 @@ function App() {
@@ -454,7 +454,7 @@ export function App() {
@@ -496,7 +496,7 @@ function App() {
@@ -531,7 +531,7 @@ export function App() {
@@ -590,7 +590,7 @@ function App() {
@@ -642,7 +642,7 @@ export function App() {
@@ -682,7 +682,7 @@ function App() {
@@ -715,7 +715,7 @@ export function App() {
@@ -757,7 +757,7 @@ function App() {
@@ -792,7 +792,7 @@ export function App() {
@@ -832,7 +832,7 @@ function App() {
@@ -865,7 +865,7 @@ export function App() {
@@ -905,7 +905,7 @@ function App() {
@@ -938,7 +938,7 @@ export function App() {
@@ -979,7 +979,7 @@ function App() {
@@ -1013,7 +1013,7 @@ export function App() {
diff --git a/Document-Processing/PDF/PDF-Viewer/react/form-filling.md b/Document-Processing/PDF/PDF-Viewer/react/form-filling.md
new file mode 100644
index 000000000..c50071a9d
--- /dev/null
+++ b/Document-Processing/PDF/PDF-Viewer/react/form-filling.md
@@ -0,0 +1,99 @@
+---
+layout: post
+title: Form filling in React PDF Viewer | Syncfusion
+description: Learn how to view, fill, export, and import PDF form fields using the Syncfusion React PDF Viewer, including disabling interaction and working with signatures.
+platform: document-processing
+control: PDF Viewer
+documentation: ug
+domainurl: ##DomainURL##
+---
+
+# Form filling in React PDF Viewer
+
+The PDF Viewer displays existing form fields in a PDF and enables users to fill, validate, and download the filled data.
+
+The PDF Viewer supports the following form field types:
+
+* Text box
+* Password
+* Check box
+* Radio button
+* List box
+* Dropdown
+* Signature field
+* Initial field
+
+
+
+## Disabling form fields
+
+The PDF Viewer provides an option to disable interaction with form fields. Use the following configuration to disable form fields in the viewer.
+
+{% tabs %}
+{% highlight ts tabtitle="index.ts" %}
+
+import * as ReactDOM from 'react-dom';
+import * as React from 'react';
+import './index.css';
+import { PdfViewerComponent, Toolbar, Magnification, Navigation, LinkAnnotation, BookmarkView,
+ ThumbnailView, Print, TextSelection, Annotation, TextSearch, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+let pdfviewer;
+
+function App() {
+ return (
+ );
+}
+const root = ReactDOM.createRoot(document.getElementById('sample'));
+root.render();
+
+{% endhighlight %}
+{% endtabs %}
+
+## Add a handwritten signature to a signature field
+
+Add a handwritten signature to a signature field by following these steps:
+
+* Click the signature field in the PDF document to open the signature panel.
+
+
+
+* Draw the signature in the signature panel.
+
+
+
+* Select **CREATE**. The drawn signature is added to the signature field.
+
+
+
+## Delete a signature from a signature field
+
+Delete a signature placed in a signature field by using the Delete option in the annotation toolbar.
+
+
+
+## Export and import form fields
+
+The PDF Viewer supports exporting and importing form field data using the `importFormFields`, `exportFormFields`, and `exportFormFieldsAsObject` methods. The following formats are supported:
+
+* FDF
+* XFDF
+* JSON
+
+For more information, see the [Form fields documentation](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/form-designer/create-programmatically#export-and-import-form-fields).
+
+## See also
+
+* [Handwritten signature in React PDF Viewer](./annotation/signature-annotation)
+* [Form Designer events](./form-designer/form-field-events)
diff --git a/Document-Processing/PDF/PDF-Viewer/react/getting-started.md b/Document-Processing/PDF/PDF-Viewer/react/getting-started.md
index e74bef472..f4724c498 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/getting-started.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/getting-started.md
@@ -8,7 +8,7 @@ documentation: ug
domainurl: ##DomainURL##
---
-# Getting Started with Standalone PDF Viewer component
+# Getting started in Standalone PDF Viewer control in React
This section explains the steps required to create a simple Standalone React PDF Viewer and demonstrates the basic usage of the PDF Viewer control in a React application.
@@ -122,7 +122,7 @@ function App() {
@@ -240,7 +240,7 @@ return (
{/* Inject the required services */}
{/* Inject the required services */}
® PDF Viewer are listed below.
+
+* [How to add annotation in text search in react?](./how-to/add-annotation-in-text-search-ts)
+* [How to add custom header to the PDF Viewer ajax request?](./how-to/add-header-value)
+* [How to add a save button to PDF Viewer toolbar?](./how-to/add-save-button-ts)
+* [How to customize the annotation selectors?](./how-to/annotation-selectors)
+* [How to change the author name of the annotation dynamically?](./how-to/change-author-name-using-annotation-settings)
+* [How to clear all the annotations from the PDF document?](./how-to/clear-annotations)
+* [How to configure the annotation selector settings?](./how-to/configure-annotationselector-setting-ts)
+* [What are the supported conformance or standards of PDF Viewer?](./how-to/conformance)
+* [How to control the visibility of the annotation?](./how-to/control-annotation-visibility-ts)
+* [How to convert the PDF library bounds to PDF viewer bounds?](./how-to/convert-pdf-library-bounds-to-pdf-viewer-bounds-ts)
+* [How to create PDF Viewer service using ASP.NET Core?](./how-to/create-pdfviewer-service-core)
+* [How to create PDF viewer web service using ASP.NET MVC?](./how-to/create-pdfviewer-service)
+* [How to customize the context menu in PDF Viewer?](./how-to/custom-context-menu)
+* [How to add custom font in handwritten signature?](./how-to/custom-font-signature-field-ts)
+* [How to add custom fonts for form fields and free text annotations?](./how-to/custom-fonts-ts)
+* [How to customize text search highlight color in PDF Viewer?](./how-to/customize-text-search-color)
+* [How to delete a specific annotation from the PDF document?](./how-to/delete-annotation)
+* [How to disable the context menu?](./how-to/disable-context-menu)
+* [How to disable tile rendering in PDF Viewer?](./how-to/disable-tile-rendering)
+* [How to display custom tooltip for annotation?](./how-to/display-custom-tool-tip-for-annotation)
+* [How to get the download start event?](./how-to/download-start-event-ts)
+* [How to enable or disable the local storage?](./how-to/enable-local-storage-ts)
+* [Enable the resizer for text markup annotation?](./how-to/enable-resize)
+* [How to enable or disable the text selection?](./how-to/enable-text-selection-ts)
+* [How to export the PDF pages as images?](./how-to/export-as-image-ts)
+* [How to extract text from the PDF document?](./how-to/extract-text-completed-ts)
+* [How to extract text from a specific region?](./how-to/extract-text-option-ts)
+* [How to extract text from the PDF document?](./how-to/extract-text-ts)
+* [How to find the text in the PDF document asynchronously?](./how-to/find-text-async-ts)
+* [How to get the base64 string of the loaded document?](./how-to/get-base64-ts)
+* [How to get the page information of the loaded document?](./how-to/get-page-info-ts)
+* [How to perform highlight, underline, and strikethrough for the selected text?](./how-to/highlight-underline-strikeout-text)
+* [How to identify the added annotation and its mode?](./how-to/identify-added-annotation-mode)
+* [How to import annotations from the PDF document?](./how-to/import-annotations)
+* [How to import and export annotations in PDF Viewer?](./how-to/import-export-annotation-ts)
+* [How to load a PDF document in PDF Viewer?](./how-to/load-document)
+* [How to set the minimum and maximum zoom percentage?](./how-to/min-max-zoom-ts)
+* [How to open the bookmark pane when the document is loaded?](./how-to/open-bookmark-ts)
+* [How to open the thumbnail pane when the document is loaded?](./how-to/open-thumbnail)
+* [How to get the annotation when it is overlapped with another annotation on its selection?](./how-to/overlapped-annotation)
+* [How to get the page render started and completed event?](./how-to/pagerenderstarted-pagerendercompleted-ts)
+* [How to print the PDF document silently?](./how-to/print-document)
+* [How to resolve the `Unable to find an entry point named 'FreeExportedValues' in DLL 'pdfium''?](./how-to/resolve-unable-to-find-an-entry-point-error)
+* [How to restrict the zooming in mobile mode?](./how-to/restricting-zoom-in-mobile-mode-ts)
+* [How to save the PDF document to database or URL?](./how-to/save-pdf-document-to-url)
+* [How to select annotations in multi page?](./how-to/select-multi-page-annotations)
+* [How to show custom stamp item in the stamp annotation?](./how-to/show-custom-stamp-item-ts)
+* [How to show or hide a particular annotation?](./how-to/show-hide-annotation-ts)
+* [How to get the signature selected and unselected event?](./how-to/signatureselect-signatureunselect-ts)
+* [How to unload the PDF document from the viewer?](./how-to/unload-document)
+
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/add-annotation-in-text-search.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/add-annotation-in-text-search.md
index 434ecae11..27933637d 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/add-annotation-in-text-search.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/add-annotation-in-text-search.md
@@ -1,24 +1,21 @@
---
layout: post
-title: Add Annotation in Text Search in React PDF Viewer | Syncfusion
-description: Learn how to add rectangle annotations using search text bounds in Syncfusion RReact Pdfviewer component of Syncfusion Essential JS 2 and more.
+title: Add Rectangle Annotation via Text Search in Syncfusion React PDF Viewer
+description: Discover how to add rectangle annotations via text search in the Syncfusion React PDF Viewer for a seamless mobile experience.
control: PDF Viewer
platform: document-processing
documentation: ug
-domainurl: ##DomainURL##
---
-# Add Rectangle Annotations Using Search Text Bounds in PDF Viewer
+# Add Rectangle Annotations via Text Search in PDF Viewer
-## Overview
+A concise guide to adding rectangle annotations at highlighted text search results in the React PDF Viewer to visually emphasize matches and improve readability.
-This guide demonstrates how to add rectangle annotations based on the bounds of highlighted search text in the PDF Viewer. This technique is useful for emphasizing search results with visual markers in annotation-supported applications.
-
-## Steps to Add Rectangle Annotations on Search Result Highlight
+## Steps to add rectangle annotations on search result highlight
**Step 1:** Follow the steps provided in the [Syncfusion® Getting Started Guide](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started) to set up a basic PDF Viewer sample.
-**Step 2:** Set Up the PdfViewer Component to add rectangle annotations based on the bounds of highlighted search text in the PDF Viewer.
+**Step 2:** Initialize the PDF Viewer with the required modules
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -102,7 +99,7 @@ class App extends React.Component {
ref={this.viewerRef}
id="PdfViewer"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/28.1.33/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
style={{ height: '640px' }}
>
);
{% endhighlight %}
{% endtabs %}
-By following this guide, you will enable the PDF Viewer to add rectangle annotations at search result locations, thus increasing the visibility of search results in your application.
+Following these steps enables the PDF Viewer to add rectangle annotations at search result locations, improving the visibility of matches.
[View sample on GitHub](https://github.com/SyncfusionExamples/react-pdf-viewer-examples/tree/master/How%20to)
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/add-header-value.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/add-header-value.md
new file mode 100644
index 000000000..a271af197
--- /dev/null
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/add-header-value.md
@@ -0,0 +1,32 @@
+---
+layout: post
+title: Add header values to AJAX requests in React PDF Viewer | Syncfusion
+description: Learn how to include custom headers in PDF Viewer AJAX requests using ajaxRequestSettings and ajaxHeaders in the React PDF Viewer component.
+platform: document-processing
+control: PDF Viewer
+documentation: ug
+---
+
+# Add header values in the React PDF Viewer
+
+Use the ajaxHeaders property in the PDF Viewer’s [ajaxRequestSettings](https://ej2.syncfusion.com/documentation/api/pdfviewer/#ajaxrequestsettings) to include custom headers with each AJAX request.
+
+Example: Add a custom Authorization header using ajaxRequestSettings
+
+```ts
+
+viewer.ajaxRequestSettings = {
+ ajaxHeaders: [
+ {
+ headerName: "Authorization",
+
+ headerValue: "Bearer 64565dfgfdsjweiuvbiuyhiueygf"
+ }
+ ],
+
+ withCredentials: false
+};
+
+```
+
+Find the sample [how to add custom headers in AjaxRequestSettings](https://stackblitz.com/edit/react-dnkbqh66-tnifjnlb?file=package.json,index.js)
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/add-save-button.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/add-save-button.md
index dde976e4a..922cccb23 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/add-save-button.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/add-save-button.md
@@ -1,22 +1,22 @@
---
layout: post
-title: Add save button in toolbar in React Pdfviewer component | Syncfusion
-description: Learn here all about Add Save button in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
+title: Add Save Button to Toolbar in React PDF Viewer
+description: Learn how to add, show, hide, enable, and disable a custom Save button in the built-in toolbar of the React PDF Viewer component.
control: Toolbar
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---
-# Add Save button in Built-In Toolbar
+# Add a Save Button to the Built-in Toolbar in React PDF Viewer
-PDF Viewer allows you to customize(add, show, hide, enable, and disable) existing items in a toolbar.
+PDF Viewer supports customizing toolbar items, including adding, showing, hiding, enabling, and disabling items.
-* Save Button - New `save` button-item can defined by [**CustomToolbarItemModel**](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/customToolbarItemModel/) and with existing items in [**ToolbarSettings**](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/toolbarSettings/) property. Newly added save button-item click action can be defined in [`toolbarclick`](https://ej2.syncfusion.com/react/documentation/api/toolbar/clickEventArgs/).
+- Save button: The Save button can be defined using [CustomToolbarItemModel](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/customToolbarItemModel/) and included alongside existing items via [ToolbarSettings](https://ej2.syncfusion.com//react/documentation/api/file-manager/toolbarSettings/). Handle the click action using [`toolbarclick`](https://ej2.syncfusion.com/react/documentation/api/file-manager/toolbarClickEventArgs/).
-* Show, Hide - `Save` button-item can be shown or hidden using the [`ToolbarSettings`](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/toolbarSettings/) property. Pre-defined toolbar items are available with [`ToolbarItem`](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/toolbarItem/).
+- Show or hide: The Save button can be shown or hidden using [ToolbarSettings](https://ej2.syncfusion.com/react/documentation/api/file-manager/toolbarSettings/). Predefined items are listed under [`ToolbarItem`](https://ej2.syncfusion.com/react/documentation/api/chart/toolbarItems/).
-* Enable, Disable - `Save` button-item can be enabled or disable using [`enabletoolbaritem`](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/toolbar/#enabletoolbaritem)
+- Enable or disable: The Save button can be enabled or disabled using [`enabletoolbaritem`](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/toolbar/).
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -55,7 +55,7 @@ return (
@@ -126,34 +126,34 @@ root.render();
{% endhighlight %}
{% endtabs %}
->Note : Default value of toolbar items is ['OpenOption', 'PageNavigationTool','MagnificationTool', 'PanTool', 'SelectionTool', 'SearchOption', 'PrintOption', 'DownloadOption','UndoRedoTool', 'AnnotationEditTool', 'FormDesignerEditTool', 'CommentTool', 'SubmitForm']
+N> Default toolbar items: ['OpenOption', 'PageNavigationTool','MagnificationTool', 'PanTool', 'SelectionTool', 'SearchOption', 'PrintOption', 'DownloadOption','UndoRedoTool', 'AnnotationEditTool', 'FormDesignerEditTool', 'CommentTool', 'SubmitForm']
-### Align Property
+### Align property
-The align property is used to specify the alignment of a `save` button-item within the toolbar.
+Specifies the alignment of the Save button within the toolbar.
-`Left`: Aligns the item to the left side of the toolbar.
-`Right`: Aligns the item to the right side of the toolbar.
+- Left: Aligns the item to the left side of the toolbar.
+- Right: Aligns the item to the right side of the toolbar.
-### Tooltip Property
+### Tooltip property
-The tooltip property is used to set the tooltip text for a `save` button-item. Tooltip provides additional information when a user hovers over the item.
+Sets the tooltip text for the Save button. The tooltip provides additional information on hover.
-### CssClass Property
+### CssClass property
-The cssClass property is used to apply custom CSS classes to a `save` button-item. It allows custom styling of the `save` button-item.
+Applies custom CSS classes to the Save button for styling.
-### Prefix Property
+### Prefix property
-The prefix property is used to set the CSS class or icon that should be added as a prefix to the existing content of the toolbar item.
+Sets the CSS class or icon to add as a prefix to the Save button content.
-### ID Property
+### ID property
-The id property within a CustomToolbarItemModel is a compulsory attribute that plays a vital role in toolbar customization. It serves as a unique identifier for each toolbar item, facilitating distinct references and interactions.
+The id property within a CustomToolbarItemModel is required and uniquely identifies each toolbar item for configuration and interaction.
-When defining or customizing toolbar items, it is mandatory to assign a specific and descriptive id to each item.
-These properties are commonly used when defining custom toolbar items with the `CustomToolbarItemModel` in the context of Syncfusion® PDF Viewer. When configuring the toolbar using the `ToolbarSettings` property, you can include these properties to customize the appearance and behavior of each toolbar item.
+When defining or customizing toolbar items, assign a specific, descriptive id to each item. These properties are commonly used when defining custom toolbar items with `CustomToolbarItemModel` in the context of Syncfusion PDF Viewer. When configuring the toolbar using the `ToolbarSettings` property, include these properties to customize appearance and behavior.
-N> When customizing `save` button-item, you have the flexibility to include either icons or text based on your design preference.
+
+N> When customizing the Save button, icons or text can be used based on design preference.
[View sample in GitHub](https://github.com/SyncfusionExamples/react-pdf-viewer-examples/tree/master/How%20to)
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/add-signature.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/add-signature.md
index ea33f3c1c..7eb63ddbd 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/add-signature.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/add-signature.md
@@ -23,7 +23,7 @@ The PDF Viewer library allows you to add signature in the signature field of the
annotationSelector
+
+```
+
+```ts
+
+document.getElementById('annotationSelector').addEventListener('click', () => {
+ viewer.rectangleSettings.annotationSelectorSettings.resizerShape = 'Circle';
+ viewer.annotationModule.editAnnotation(viewer.annotationCollection[0]);
+});
+
+```
+
+Sample: [How to customize the annotation selector](https://stackblitz.com/edit/react-dnkbqh66-tsqcqdcx?file=index.js,index.html)
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/change-author-name-using-annotation-settings.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/change-author-name-using-annotation-settings.md
new file mode 100644
index 000000000..e0bd095e9
--- /dev/null
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/change-author-name-using-annotation-settings.md
@@ -0,0 +1,58 @@
+---
+layout: post
+title: Change author name using annotation settings in React PDF Viewer | Syncfusion
+description: Learn how to change the author name and related annotation settings using the annotationSettings API in the React PDF Viewer.
+platform: document-processing
+control: PDF Viewer
+documentation: ug
+domainurl: ##DomainURL##
+---
+
+# Change author name using annotation settings in React PDF Viewer
+
+The PDF Viewer allows customizing individual annotation settings using the annotationSettings API, which exposes properties common to all annotations.
+
+API name: annotationSettings
+
+| Property Name | Data type & Default Value | Description |
+|---|---|---|
+| author | String ("Guest") | Specifies the author of the annotation. |
+| minWidth | Number (0) | Specifies the minimum width of the annotation. |
+| maxWidth | Number (0) | Specifies the maximum width of the annotation. |
+| minHeight | Number (0) | Specifies the minimum height of the annotation. |
+| maxHeight | Number (0) | Specifies the maximum height of the annotation. |
+| isLock | Boolean (false) | Specifies whether the annotation is locked. If true, the annotation cannot be selected. |
+| isPrint | Boolean (true) | Specifies whether the annotation is included in print actions. |
+| isDownload | Boolean (true) | Specifies whether the annotation is included in download actions. |
+| Free Text Settings |
+| allowOnlyTextInput | Boolean (false) | Specifies text-only mode for free text annotations. If true, moving or resizing is disabled. |
+
+Change the author name and other properties using the annotationSettings API as shown below.
+
+{% tabs %}
+{% highlight ts tabtitle="Standalone" %}
+```ts
+import { PdfViewer, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, TextSearch, Print, Annotation, FormFields } from "../src/index";
+
+PdfViewer.Inject(Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, TextSearch, Print, Annotation, FormFields);
+let viewer: PdfViewer = new PdfViewer();
+viewer.load('https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf', null);
+viewer.annotationSettings = { author: 'syncfusion', minHeight: 30, maxHeight: 500, minWidth: 30, maxWidth: 500, isLock: false, isPrint: true, isDownload: true };
+viewer.freeTextSettings = { allowTextOnly : true };
+viewer.appendTo("#pdfViewer");
+```
+{% endhighlight %}
+{% highlight ts tabtitle="Server-Backed" %}
+```ts
+import { PdfViewer, Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, TextSearch, Print, Annotation, FormFields } from "../src/index";
+
+PdfViewer.Inject(Toolbar, Magnification, Navigation, LinkAnnotation, ThumbnailView, BookmarkView, TextSelection, TextSearch, Print, Annotation, FormFields);
+let viewer: PdfViewer = new PdfViewer();
+viewer.serviceUrl = "https://document.syncfusion.com/web-services/pdf-viewer/api/pdfviewer/";
+viewer.load('https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf', null);
+viewer.annotationSettings = { author: 'syncfusion', minHeight: 30, maxHeight: 500, minWidth: 30, maxWidth: 500, isLock: false, isPrint: true, isDownload: true };
+viewer.freeTextSettings = { allowTextOnly : true };
+viewer.appendTo("#pdfViewer");
+```
+{% endhighlight %}
+{% endtabs %}
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/clear-annotation.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/clear-annotation.md
index 450d4845e..b0efe333b 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/clear-annotation.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/clear-annotation.md
@@ -1,24 +1,24 @@
---
layout: post
-title: Clear annotation in React Pdfviewer component | Syncfusion
-description: Learn here all about Clear annotation in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Clear annotation
+title: Clear annotations in React PDF Viewer | Syncfusion
+description: Learn how to clear all annotations or delete specific annotations in the React PDF Viewer using deleteAnnotations and deleteAnnotationById.
+control: PDF Viewer
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---
-# Clear annotation in React Pdfviewer component
+# Clear annotations in React PDF Viewer
-To clear all the annotations in a PDF document using the Syncfusion® PDF Viewer, you can use the **deleteAnnotations()** method. This method is used to clear all the annotations present in the currently loaded document.
+Use the [deleteAnnotations](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#deleteannotations) method to clear all annotations in the currently loaded document.
-Here is an example of how you can clear all the annotations present in the currently loaded document:
+Example: Clear all annotations in the loaded document
```html
```
-We can also delete specific annotation with the **deleteAnnotationById()** method. This method is used to delete a specific annotation using its id.
+To remove a specific annotation, use the deleteAnnotationById method to target an annotation by its id.
-Here is an example of how you can delete specific annotation with the **deleteAnnotationById()** method:
+Example: Delete a specific annotation by id
```html
```
-Find the sample [how to clear annotations using deleteAnnotations](https://stackblitz.com/edit/react-xlvqkm?file=public%2Findex.html)
\ No newline at end of file
+Sample: How to clear annotations using deleteAnnotations
+(https://stackblitz.com/edit/react-xlvqkm?file=public%2Findex.html)
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/configure-annotation-selector-setting.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/configure-annotation-selector-setting.md
index 7122c949b..14714071c 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/configure-annotation-selector-setting.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/configure-annotation-selector-setting.md
@@ -1,32 +1,30 @@
---
layout: post
-title: AnnotationSelector Setting in React Pdfviewer component | Syncfusion
-description: Learn here all about AnnotationSelector Setting in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
+title: Configure annotation selector settings in React PDF Viewer | Syncfusion
+description: Learn how to configure annotation selector settings in the React PDF Viewer using annotationSelectorSettings and related options.
control: PDF Viewer
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---
-# How to Configure Annotation Selector Settings
+# Configure annotation selector settings
-### Annotation Selector Settings
+Use the [annotationSelectorSettings](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationSelectorSettings/) property to customize the appearance and behavior of the annotation selector in the UI.
-The [**annotationSelectorSettings**](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationSelectorSettings/) property allows you to customize the appearance and behavior of the annotation selector in the UI.
+AnnotationSelectorSettingsModel
-The [**AnnotationSelectorSettingsModel**](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/annotationSelectorSettingsModel/) defines the settings for the annotation selector, including border colors, sizes, and shapes. It provides fine-grained control over how annotations are displayed and interacted with.
+The [AnnotationSelectorSettingsModel](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart/accumulationAnnotationSettingsModel/) defines settings such as border colors, sizes, and shapes, enabling fine-grained control over how annotations are displayed and interacted with.
-### How to Configure Annotation Selector Settings
-
-**Step 1:** Follow the steps provided in the [link](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started/) to create a simple PDF Viewer sample.
-
-**Step 2:** Add JavaScript for Annotation Selector Settings: Below the PDF Viewer in your view, include the following script to configure the annotationSelectorSettings
+Steps to configure annotation selector settings
+- Step 1: Create a PDF Viewer instance and initialize it.
+- Step 2: Set the annotationSelectorSettings property to customize selector behavior.
{% raw %}
```javascript
® PDF Viewer. This process allows the annotations to be visible only in the Syncfusion® PDF Viewer.
+This guide explains how to control the visibility of PDF annotations in documents loaded and saved using the Syncfusion PDF Viewer in React, so annotations are visible only in the viewer when required.
-### How to Control Annotation Visibility
+Steps to control annotation visibility
-**Step 1:** Follow the steps provided in the [link](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/angular/getting-started/) to create a simple PDF Viewer sample.
+**Step 1:** Follow the steps provided in the [link](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started/) to create a simple PDF Viewer sample.
**Step 2:** Set Up Your React Component
@@ -41,7 +41,7 @@ function App() {
@@ -114,6 +114,6 @@ root.render();
{% endhighlight %}
{% endtabs %}
-By following these steps, the annotations in a PDF document can be set to be visible in the Syncfusion® PDF Viewer, providing control over annotation visibility based on different platforms.
+Following these steps ensures annotations are visible in the Syncfusion PDF Viewer while controlling their visibility in the downloaded PDF.
[View sample in GitHub](https://github.com/SyncfusionExamples/react-pdf-viewer-examples/tree/master/How%20to)
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/convert-pdf-library-bounds-to-pdf-viewer-bounds.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/convert-pdf-library-bounds-to-pdf-viewer-bounds.md
index 61607e4a2..8f1f75b37 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/convert-pdf-library-bounds-to-pdf-viewer-bounds.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/convert-pdf-library-bounds-to-pdf-viewer-bounds.md
@@ -1,32 +1,30 @@
---
layout: post
-title: Converting Library Bounds in React PdfViewer | Syncfusion
-description: Learn how to convert Library bounds into Viewer bounds in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
+title: Convert PDF Library bounds to PDF Viewer bounds | Syncfusion
+description: Learn how to convert PDF Library bounds into PDF Viewer bounds when exporting annotations, ensuring accurate placement in the React PDF Viewer.
control: PDF Viewer
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---
-# Converting PDF Library Bounds to PDF Viewer Bounds
+# Convert PDF Library bounds to PDF Viewer bounds
-### Overview
+When exporting annotations from the PDF Library, convert the bounds values into the PDF Viewer format to ensure accurate placement.
-When exporting annotations from the PDF Library, you may need to convert the bounds values into the PDF Viewer format. This guide will help you achieve that using the Syncfusion® PDF Viewer component.
+Steps to convert bounds values
-### How to Convert Bounds Values
+**Step 1:** Initialize the PDF Viewer instance
-**Step 1:** Initialize the PdfViewer Instance
+Create an instance of the PDF Viewer and configure it with the required services.
-Create an instance of the PdfViewer and configure it with the required services.
-
-**Step 2:** Handle Export Success
+**Step 2:** Handle export success
Convert the exported blob URL to an object and then extract and convert the annotation bounds.
-**Step 3:** Create a Function to Convert Blob URL to Object
+**Step 3:** Convert Blob URL to object
-This function fetches the blob data and converts it into a JSON object.
+Fetch the blob data and convert it into a JSON object.
{% tabs %}
{% highlight js tabtitle="Server-Backed" %}
@@ -155,8 +153,8 @@ root.render();
{% endhighlight %}
{% endtabs %}
-### Conclusion
+Conclusion
-By following these steps, you can successfully convert PDF Library bounds values into PDF Viewer bounds values when exporting annotations as JSON. This will help maintain accuracy in the annotation placement and ensure a seamless user experience.
+These steps convert PDF Library bounds values into PDF Viewer bounds values when exporting annotations as JSON, maintaining accurate annotation placement.
[View sample in GitHub](https://github.com/SyncfusionExamples/react-pdf-viewer-examples/tree/master/How%20to/)
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/custom-context-menu.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/custom-context-menu.md
index 0c152695c..51b43db11 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/custom-context-menu.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/custom-context-menu.md
@@ -1,20 +1,20 @@
---
layout: post
-title: Customize context menu in | Syncfusion
-description: Learn here all about Customize context menu in Syncfusion React PDF Viewer component of Syncfusion Essential JS 2 and more.
+title: Customize the context menu in React PDF Viewer | Syncfusion
+description: Learn how to add and customize custom context menu options in the React PDF Viewer using addCustomMenu, customContextMenuSelect, and related events.
control: PDF Viewer
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---
-# Customize context menu in React Pdfviewer component
+# Customize the context menu in PDF Viewer
-PDF Viewer allows you to add custom option in context menu. It can be achieved by using the `addCustomMenu()` method and custom action is defined using the `customContextMenuSelect()`method.
+PDF Viewer supports adding custom options to the context menu using the [addCustomMenu()](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#addcustommenu) method. Define actions for custom items with the [customContextMenuSelect()](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#customcontextMenuselect) method.
-### Add Custom Option
+### Add a custom option
-The following code shows how to add custom option in context menu.
+The following example adds custom options to the context menu.
```js
export function App() {
@@ -58,7 +58,7 @@ The following code shows how to add custom option in context menu.
);
```
-### Customize custom option in context menu
+#### Show or hide custom items before opening
-The PDF Viewer feature enables customization of custom options and the ability to toggle the display of the default context menu. When the addCustomMenu parameter is set to `true`, the default menu is hidden; conversely, when it is set to `false`, the default menu items are displayed.
+Use [customContextMenuBeforeOpen()](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#customcontextMenubeforeopen) to hide or show custom options dynamically.
```js
export function App() {
@@ -120,7 +120,7 @@ The PDF Viewer feature enables customization of custom options and the ability t
);
```
-The following is the output of custom context menu with customization.
+The following is the output of the custom context menu with customization.
{% tabs %}
{% highlight js tabtitle="index.jsx" %}
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/custom-font-signature-field.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/custom-font-signature-field.md
index 165742268..34de478d4 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/custom-font-signature-field.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/custom-font-signature-field.md
@@ -1,25 +1,24 @@
---
layout: post
-title: How to change the font family in Syncfusion React Pdfviewer component
-description: Learn how to change the font family in Form Field's Type Signature in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
+title: Change font family in React PDF Viewer | Syncfusion
+description: Learn how to change the font family for form field type signatures and initials in the React PDF Viewer using typeSignatureFonts and typeInitialFonts.
platform: document-processing
control: PDF Viewer
documentation: ug
domainurl: ##DomainURL##
---
-# To Change the Font Family
-Change the Font Family in Type Signature of the Syncfusion® PDF Viewer by adding a custom css stylesheet to the document , and then apply the desired font family to the type signature element. Include the Google font link in the HTML head section to apply the Google Font.
+# Change the font family for type signatures
-### Signature Field property
+Change the font family for Type Signature and Initial fields by adding a stylesheet to load fonts and assigning them via the PDF Viewer settings. Include Google Font links in the HTML head to use those fonts.
-The Syncfusion® PDF Viewer provides the ability to change the font family for Signature and Initial Field using `typeSignatureFonts` and `typeInitialFonts`property.
+### Signature field property
-The following steps are used to include custom fonts for signature and initial field.
+The PDF Viewer supports changing fonts for Signature and Initial fields using the `typeSignatureFonts` and `typeInitialFonts` properties.
**Step 1:** Follow the steps provided in the [link](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started) to create a simple PDF Viewer sample.
-**Step 2:** Insert the following code snippet to implement the functionality for using custom fonts in Signature field.
+**Step 2:** Use the following code to apply custom fonts to the Signature field.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -61,9 +60,9 @@ root.render();
{% endtabs %}
-### Initial Field property
+### Initial field property
-Insert the following code snippet to implement the functionality for using custom fonts in Initial field.
+Use the following code to apply custom fonts to the Initial field.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -105,4 +104,4 @@ root.render();
{% endhighlight %}
{% endtabs %}
-By implementing this , you can use custom fonts in form field's signature in both `signature` and `initial` field
\ No newline at end of file
+By implementing this configuration, custom fonts can be used for both Signature and Initial form fields.
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/custom-fonts.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/custom-fonts.md
index efd872055..1cfdc2985 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/custom-fonts.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/custom-fonts.md
@@ -1,23 +1,28 @@
---
layout: post
-title: Add custom fonts to the PDF Viewer using the PDF document | Syncfusion
-description: Learn here all about how to add custom fonts using the PDF document in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
+title: Add custom fonts in React PDF Viewer | Syncfusion
+description: Learn how to add and load custom TTF fonts for documents displayed in the React PDF Viewer using the customFonts property.
control: PDF Viewer
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---
-# How to add custom fonts to the PDF viewer used in the PDF document
+# Add custom fonts in PDF Viewer
-To use custom fonts in the Syncfusion® PDF Viewer within your PDF document, you need to add the custom TTF font files to the resource URL directory and configure the viewer to load these fonts. You can specify the custom font names using the
-**customFonts** property, which accepts an array of font names.
+The React PDF Viewer supports loading, editing, and saving custom fonts in form fields such as text boxes, list boxes, and drop-downs by using the customFonts property. Add the required TTF files to the resource URL directory used by the viewer so they can be loaded at runtime and used in forms.
-The following steps are used to customize the selection border.
+## Integrating Custom Font Collections into Form Fields in PDF Viewer
-**Step 1:** Add the custom TTF font files to the resource URL path referenced in your application. For example, place the custom TTF files in the ej2-pdfviewer-lib folder, which will serve as the resource URL path.
+To ensure proper rendering and saving of form fields that use custom fonts, especially when the fonts are not installed on the system, place the TTF files in the resource URL path referenced by the viewer and specify their names through the customFonts property (string array). These fonts will then be available for loading, editing, and saving form fields in the PDF.
-**Step 2:** The following code snippet are how you can add custom fonts to the PDF viewer.
+To use custom fonts in the Syncfusion PDF Viewer, add the custom TTF files to the resource URL directory and configure the viewer to load them. Specify font file names using the `customFonts` property as an array of names.
+
+Steps to add custom fonts
+
+**Step 1:** Add custom TTF font files to the resource URL path referenced in the application. For example, place the TTF files in the ej2-pdfviewer-lib folder that serves as the resource URL path.
+
+**Step 2:** Use the following code to configure custom fonts in the PDF Viewer.
{% raw %}
@@ -33,4 +38,6 @@ The following steps are used to customize the selection border.
```
{% endraw %}
-By following these steps, you can successfully integrate and use custom fonts in your PDF documents displayed in the EJ2 PDF Viewer.
\ No newline at end of file
+These steps integrate custom fonts into PDF documents displayed in the PDF Viewer.
+
+> Note: If a form field (TextBox, ListBox, DropDown) using a custom font has text larger than the field’s bounds, the downloaded PDF may render incorrectly in browsers or third‑party viewers. It displays correctly in the Syncfusion PDF Viewer. To avoid this, use a font size that fits within the field or enlarge the field before saving/downloading.
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/delete-annotation.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/delete-annotation.md
index 8c33749bd..9b829fe8f 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/delete-annotation.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/delete-annotation.md
@@ -1,22 +1,22 @@
---
layout: post
-title: Delete annotation in React Pdfviewer component | Syncfusion
-description: Learn here all about Delete annotation in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Delete annotation
+title: Delete an annotation in React PDF Viewer | Syncfusion
+description: Learn how to delete a specific annotation in the React PDF Viewer using the deleteAnnotationById method.
+control: PDF Viewer
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---
-# Delete annotation in React Pdfviewer component
+# Delete an annotation in PDF Viewer
-The PDF Viewer library allows you to delete a specific annotation from a PDF document. Deleting a specific annotation can be done using the **deleteAnnotationById()** method. This method is used to delete a specific annotation using its id.
+Use the `deleteAnnotationById()` method to remove a specific annotation from a PDF document by its id.
-The following steps are used to delete a specific annotation from PDF Document.
+Steps to delete a specific annotation
-**Step 1:** Follow the steps provided in the [link](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/angular/getting-started/) to create a simple PDF Viewer sample.
+**Step 1:** Follow the steps provided in the [link](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started/) to create a simple PDF Viewer sample.
-**Step 2:** Use the following code snippet to delete a specific annotation using `deleteAnnotationById()` method.
+**Step 2:** Use the following code to delete a specific annotation using `deleteAnnotationById()`.
```
@@ -30,4 +30,5 @@ The following steps are used to delete a specific annotation from PDF Document.
```
-Find the sample [how to delete a specific annotation using deleteAnnotationById](https://stackblitz.com/edit/react-svdb9y?file=src%2Findex.js)
\ No newline at end of file
+Sample: How to delete a specific annotation using deleteAnnotationById
+(https://stackblitz.com/edit/react-svdb9y?file=src%2Findex.js)
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/download-start-event.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/download-start-event.md
index 1f69e5f00..193765a4c 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/download-start-event.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/download-start-event.md
@@ -1,20 +1,16 @@
---
layout: post
-title: Controlling File Downloadsl in React Pdfviewer component | Syncfusion
-description: Learn here how to Controlling File Downloads in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
+title: Control file downloads in React PDF Viewer | Syncfusion
+description: Learn how to intercept and control file downloads in the React PDF Viewer using the downloadStart event.
control: Open thumbnail
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---
-# Controlling File Downloads in Syncfusion® PDF Viewer
+# Control file downloads in PDF Viewer
-In the Syncfusion® PDF Viewer, we've introduced a new feature that enables you to manage file downloads more effectively. This feature allows you to intercept and potentially skip the download process of a PDF document, providing enhanced control over user interactions within your application.
-
-### Using the downloadStart Event
-
-The key to this functionality lies in the downloadStart event, which offers a mechanism to intercept the initiation of the download process. Within the event handler, you can set the cancel argument to true to programmatically prevent the download action from proceeding.
+Use the downloadStart event to intercept the start of a download and optionally cancel it. In the event handler, set `args.cancel = true` to prevent the download.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -30,7 +26,7 @@ let pdfviewer;
function App() {
function downloadStart(args){
- // Your custom logic here
+ // Custom logic
args.cancel = true; // Prevent download action
};
return (
@@ -40,7 +36,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
downloadStart={downloadStart}
style={{ 'height': '640px' }}>
);
{% endhighlight %}
{% endtabs %}
-By default, the cancel argument is set to `false`, indicating that the download action will proceed unless explicitly canceled by your custom logic.
+By default, `args.cancel` is `false`, so the download proceeds unless explicitly canceled.
-### Enhanced Flexibility
+### Flexibility
-By leveraging the `downloadStart` event and its cancel argument, you gain the ability to implement custom logic to control and potentially prevent download actions based on your application's specific requirements. This enhancement provides greater flexibility in managing user interactions with PDF documents, empowering you to tailor the experience according to your needs.
\ No newline at end of file
+Leverage the [downloadStart](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#downloadstart) event to apply custom rules for allowing or preventing downloads based on application needs.
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/enable-local-storage.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/enable-local-storage.md
index ff2af8b02..b21781a88 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/enable-local-storage.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/enable-local-storage.md
@@ -1,20 +1,20 @@
---
layout: post
-title: Managing Local Storage in React Pdfviewer component | Syncfusion
-description: Learn how to manage local storage in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
+title: Manage local storage in React PDF Viewer | Syncfusion
+description: Learn how to control session-specific data storage in the React PDF Viewer using the enableLocalStorage property.
control: PDF Viewer
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---
-# Managing Local Storage in Syncfusion® PDF Viewer
+# Manage local storage in PDF Viewer
-The Syncfusion® PDF Viewer provides the `enableLocalStorage` property, which allows you to control how session-specific data is stored. You can choose to store this data in an internal collection or rely on the default session storage.
+Use the `enableLocalStorage` property to control whether session-specific data is stored in session storage (default) or an internal in-memory collection.
-### Using the enableLocalStorage Property
+### Use enableLocalStorage
-Set the `enableLocalStorage` property to manage whether the PDF Viewer uses session storage (default) or an internal collection. When set to `true`, session-specific data is kept in memory. Otherwise, session storage is used.
+Set `enableLocalStorage` to manage storage behavior. When `true`, data is kept in memory; otherwise, session storage is used.
{% tabs %}
{% highlight js tabtitle="Server-Backed" %}
@@ -48,14 +48,10 @@ root.render();
{% endhighlight %}
{% endtabs %}
-### Impact and Considerations
+### Considerations
-- **Increased Memory Usage**: Setting `enableLocalStorage` to `true` can increase memory usage, particularly with larger documents or those containing many interactive elements, such as form fields and annotations.
-- **Avoiding Memory Leaks**: It is crucial to properly dispose of the PDF Viewer instance when it's no longer needed to prevent memory leaks, especially when using in-memory storage.
-- **Default Behavior**: By default, this property is set to `false`, meaning the session storage mechanism is utilized unless explicitly changed.
-
-### Enhanced Control
-
-Leveraging the `enableLocalStorage` property provides greater flexibility in managing how data is stored during a session, allowing you to optimize performance and storage based on your application’s specific requirements.
+- Memory usage can increase when using in-memory storage with large documents or many interactive elements.
+- Dispose of the PDF Viewer instance when no longer needed to avoid memory leaks.
+- Default: `enableLocalStorage` is `false`, so session storage is used unless changed.
[View sample in GitHub](https://github.com/SyncfusionExamples/react-pdf-viewer-examples/tree/master/How%20to/)
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/enable-text-selection.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/enable-text-selection.md
index bfe198e52..88618f184 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/enable-text-selection.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/enable-text-selection.md
@@ -1,20 +1,20 @@
---
layout: post
-title: Enable Text Selection in React PdfViewer component | Syncfusion
-description: Learn how to Enable Text Selection in Syncfusion React PdfViewer component of Syncfusion Essential JS 2 and more.
+title: Enable or disable text selection in React PDF Viewer | Syncfusion
+description: Learn how to enable or disable text selection in the React PDF Viewer using the enableTextSelection property.
control: PDF Viewer
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---
-# Enable or Disable Text Selection in Syncfusion PDF Viewer
+# Enable or disable text selection in PDF Viewer
-The Syncfusion PDF Viewer provides the `enableTextSelection` property, which allows you to control whether users can select text within the displayed PDF document. This feature can be toggled programmatically during runtime.
+Use the `enableTextSelection` property to control whether users can select text in the displayed PDF. This setting can be configured at initialization and toggled at runtime.
-## Configure Text Selection on Initialization
+## Configure on initialization
-You can set the initial text selection behavior when initializing the PDF Viewer control by configuring the `enableTextSelection` property.
+Set initial behavior when instantiating the PDF Viewer.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -33,7 +33,7 @@ export function App() {
@@ -51,9 +51,9 @@ root.render();
{% endhighlight %}
{% endtabs %}
-## Toggle Text Selection Dynamically
+## Toggle dynamically
-You can change the text selection behavior at runtime using buttons, menu options, or other UI elements. The following example demonstrates how to toggle text selection with button clicks:
+Change the behavior at runtime using buttons or other UI.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -97,7 +97,7 @@ export class App extends React.Component {
id="pdfViewer"
ref={this.pdfViewer}
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/28.1.33/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
enableTextSelection={false}
style={{ height: '640px' }}
>
@@ -116,14 +116,14 @@ root.render();
{% endhighlight %}
{% endtabs %}
-## Use Cases and Considerations
+## Use cases and considerations
-- **Document Protection**: Disabling text selection helps prevent unauthorized copying of sensitive content.
-- **Read-only Documents**: In scenarios where documents are meant for viewing only, disabling text selection can provide a cleaner user experience.
-- **Interactive Applications**: Toggle text selection based on user roles or document states in complex applications.
+- Document protection: Disable text selection to help prevent copying sensitive content.
+- Read-only documents: Provide a cleaner viewing experience by preventing selection.
+- Interactive apps: Toggle selection based on user roles or document states.
-## Default Behavior
+## Default behavior
-By default, text selection is enabled in the PDF Viewer. Set the `enableTextSelection` property to `false` explicitly if you want to disable this functionality.
+Text selection is enabled by default. Set `enableTextSelection` to `false` to disable it.
-[View Sample in GitHub](https://github.com/SyncfusionExamples/react-pdf-viewer-examples/tree/master/How%20to)
\ No newline at end of file
+[View sample in GitHub](https://github.com/SyncfusionExamples/react-pdf-viewer-examples/tree/master/How%20to)
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/export-as-image.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/export-as-image.md
index 134bf387c..d37974077 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/export-as-image.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/export-as-image.md
@@ -1,22 +1,22 @@
---
layout: post
-title: Export As Image in React PDF Viewer component | Syncfusion
-description: Learn here all about Export As Image in Syncfusion React PDF Viewer component of Syncfusion Essential JS 2 and more.
+title: Export pages as images in React PDF Viewer | Syncfusion
+description: Learn how to export pages as Base64-encoded images in the React PDF Viewer using exportAsImage and exportAsImages.
control: PDF Viewer
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---
-# Export As Image in React Pdfviewer component
+# Export pages as images in PDF Viewer
-The PDF Viewer library allows you to export specified pages as a Base64-encoded image string using the **exportAsImage()** method and exporting a range of pages as Base64-encoded image strings using the **exportAsImages()** method.
+Export a single page as a Base64-encoded image using `exportAsImage()` or export a range of pages using `exportAsImages()`.
-The following steps are used to exportAsImage.
+Steps to export pages as images
**Step 1:** Follow the steps provided in the [link](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started/) to create a simple PDF Viewer sample.
-**Step 2:** The following code snippet to implement the functionality for exporting a specified page as a Base64-encoded image string or exporting a range of pages as Base64-encoded image strings.
+**Step 2:** Use the following code to export a specified page as a Base64-encoded image or a range of pages as Base64-encoded images.
```
@@ -33,7 +33,7 @@ exportAsImage() {
});
}
```
-Similarly, to code snippet for exports the specified page as a Base64-encoded image string, allowing for custom image size:
+Export a specified page as a Base64-encoded image with a custom size:
```
@@ -51,7 +51,7 @@ exportAsImageWithSize() {
});
}
```
-Similarly, to code snippet for exports the range of pages as Base64-encoded image strings:
+Export a range of pages as Base64-encoded image strings:
```
@@ -68,7 +68,7 @@ exportAsImages() {
});
}
```
-Similarly, to code snippet for exports the range of pages as Base64-encoded image strings, allowing for custom image size:
+Export a range of pages as Base64-encoded images with a custom size:
```
@@ -87,4 +87,4 @@ exportAsImageWithSize() {
}
```
-By following these steps, you can successfully integrate and use the export as image API in the EJ2 PDF Viewer.
\ No newline at end of file
+These APIs enable exporting viewer pages as images for further processing or download.
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/extract-text-completed.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/extract-text-completed.md
index d88fb52a0..1d281650f 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/extract-text-completed.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/extract-text-completed.md
@@ -1,18 +1,17 @@
---
layout: post
-title: extractTextCompleted Event in React Pdfviewer component | Syncfusion
-description: Learn here all about extractTextCompleted Event in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: extractTextCompleted
+title: extractTextCompleted event in React PDF Viewer | Syncfusion
+description: Learn how to use the extractTextCompleted event and isExtractText property in the Syncfusion React PDF Viewer to extract text and bounds.
+control: PDF Viewer
platform: document-processing
documentation: ug
-domainurl: ##DomainURL##
---
-# Extract text using extractTextCompleted Event in React Pdfviewer component
+# Use extractTextCompleted to extract text in React PDF Viewer
-The PDF Viewer library allows you to extract the text from a page along with the bounds. Text extraction can be done using the [**isExtractText**](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#isextracttext) property and [**extractTextCompleted**](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#extracttextcompleted) event.
+Use the [isExtractText](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#isextracttext) property and the [extractTextCompleted](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#extracttextcompleted) event to extract page text along with bounds.
-Here is an example of how you can use the isExtractText property and extractTextCompleted event:
+The following example shows how to enable text extraction and handle the completion event:
{% raw %}
@@ -40,4 +39,4 @@ function extractTextCompleted(args){
```
{% endraw %}
-Find the sample [how to Extract Text](https://stackblitz.com/edit/react-ijmx6c?file=src%2Findex.js)
\ No newline at end of file
+Find the sample: [How to extract text](https://stackblitz.com/edit/react-ijmx6c?file=src%2Findex.js)
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/extract-text-option.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/extract-text-option.md
index ab93fc1f5..3a86da98a 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/extract-text-option.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/extract-text-option.md
@@ -1,16 +1,15 @@
---
layout: post
-title: Extract text Option in React Pdfviewer component | Syncfusion
-description: Learn here all about Extract text Option in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Extract text Option
+title: Configure extractTextOption in React PDF Viewer | Syncfusion
+description: Learn how to use the extractTextOption property in the Syncfusion React PDF Viewer to control text extraction and memory usage.
+control: PDF Viewer
platform: document-processing
documentation: ug
-domainurl: ##DomainURL##
---
-# Extract Text Option in Syncfusion React Pdfviewer Control
+# Configure extractTextOption in React PDF Viewer
-The `extractTextOption` property in the Syncfusion PdfViewer control allows you to optimize memory usage by controlling the level of text extraction. This setting influences the data returned in the `extractTextCompleted` event. You can select one of the following options to determine the kind of text extraction and layout information to retrieve.
+The `extractTextOption` property controls how text is extracted and optimizes memory usage. It also affects the data returned in the `extractTextCompleted` event. Choose one of the following options to determine the text and layout data to retrieve.
### Available Options:
@@ -50,7 +49,7 @@ export function App() {
@@ -77,6 +76,6 @@ root.render();
**extractTextOption.None:** This option does not extract or return any text or layout information. It is used to optimize memory usage when no text extraction is necessary. This setting is only relevant for the `extractTextCompleted` event and cannot be used with the `ExtractText` method.
-N> Text Search: When using the `ExtractTextOption.TextOnly` and `extractTextOption.None` option, the findText method will not work. Instead, you should use the findTextAsync method to perform text searches asynchronously.
+N> Text search: When using the `extractTextOption.TextOnly` or `extractTextOption.None` options, the `findText` method is unavailable. Use the `findTextAsync` method to perform text searches asynchronously.
[View Sample in GitHub](https://github.com/SyncfusionExamples/react-pdf-viewer-examples/tree/master/How%20to)
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/extract-text.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/extract-text.md
index abedeeacf..3e6914809 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/extract-text.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/extract-text.md
@@ -1,39 +1,39 @@
---
layout: post
-title: Extract Text in React Pdfviewer component | Syncfusion
-description: Learn about the Extract Text in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Extract Text
+title: Use extractText in React PDF Viewer | Syncfusion
+description: Learn how to use the extractText method in the Syncfusion React PDF Viewer to extract text and bounds from one or more pages.
+control: PDF Viewer
platform: document-processing
documentation: ug
-domainurl: ##DomainURL##
---
-# Extract Text Method in Syncfusion PdfViewer Control
+# Extract text using extractText in React PDF Viewer
-The `extractText` method of the Syncfusion PdfViewer control enables text extraction from one or more pages in a PDF document. This method is useful for retrieving the text content along with its associated data, such as the bounds of each text element.
+The `extractText` method extracts text from one or more pages and can return plain text or text with bounds for each element.
-### extractText Method
-The extractText method retrieves text data from the specified page(s) of a PDF document. It can extract text from one page, a range of pages, or even provide detailed text data, depending on the options specified.
+### extractText method
+Retrieves text data from one page or a range of pages based on the specified options.
#### Parameters:
**startIndex:** The starting page index for text extraction (0-based index).
-**endIndex Or isOptions:** This can either be the ending page index for the text extraction (for extracting from multiple pages) or an option specifying text extraction criteria for a single page.
+**endIndex or isOptions:** Either the ending page index (for multiple pages) or an option specifying extraction criteria for a single page.
**options (optional):** Specifies additional options, such as extracting plain text `TextOnly` or more detailed text data `TextAndBounds`. You can specify various options for text extraction. These options determine whether you want to extract plain text, text with bounds, or detailed text data.
-***TextOnly:*** Extracts only the plain text content without bounds or additional information.
-
-***TextAndBounds:*** Extracts text content along with its bounds (coordinates) within the PDF.
+- TextOnly: Extracts only plain text without bounds.
+- TextAndBounds: Extracts text with bounds (coordinates).
#### Returns:
-The method returns a Promise that resolves to an object containing two properties:
+Returns a Promise with:
+- textData: An array of TextDataSettingsModel with details including bounds and page text.
+- pageText: A concatenated string of plain text from the specified page(s).
**textData:** An array of TextDataSettingsModel objects, each representing the details of the extracted text (including bounds, page text, etc.).
**pageText:** A concatenated string of plain text extracted from the specified page(s).
-### Usage of extractText in Syncfusion PdfViewer Control
+### Usage of extractText in Syncfusion PDF Viewer Control
Here is an example that demonstrates how to use the extractText method along with event handling:
```html
@@ -79,7 +79,7 @@ export function App() {
);
{% endhighlight %}
{% endtabs %}
-#### Explanation:
-**Single Page Extraction:** The first `extractText` call extracts text from page 1 (`startIndex = 1`), using the 'TextOnly' option for plain text extraction.
-
-**Multiple Pages Extraction:** The second extractText call extracts text from pages 0 through 2 (`startIndex = 0, endIndex = 2`), using the `TextOnly` option for plain text extraction.
+#### Explanation
+- Single page: Extracts text from page 1 (`startIndex = 1`) using `TextOnly`.
+- Multiple pages: Extracts text from pages 0–2 (`startIndex = 0, endIndex = 2`) using `TextOnly`.
[View Sample in GitHub](https://github.com/SyncfusionExamples/react-pdf-viewer-examples/tree/master/How%20to)
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/find-text-async.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/find-text-async.md
index e54509e9c..55c7a8518 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/find-text-async.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/find-text-async.md
@@ -1,18 +1,17 @@
---
layout: post
-title: Find Text Async in React Pdfviewer component | Syncfusion
-description: Learn about the `findTextAsync` in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Find Text Async
+title: Use findTextAsync in React PDF Viewer | Syncfusion
+description: Learn how to search text asynchronously with findTextAsync in the Syncfusion React PDF Viewer and retrieve match bounds.
+control: PDF Viewer
platform: document-processing
documentation: ug
-domainurl: ##DomainURL##
---
-# Find Text using findTextAsync Method in Syncfusion React PdfViewer Control
+# Find text with findTextAsync in React PDF Viewer
-The findTextAsync method in the Syncfusion PdfViewer control allows you to search for specific text or an array of strings asynchronously within a PDF document. The method returns the bounding rectangles for each occurrence of the search term, allowing you to find and work with text positions in the document.
+The `findTextAsync` method searches for a string or array of strings asynchronously and returns bounding rectangles for each match. Use it to locate text positions across the document or on a specific page.
-Here is an example of how you can use the **findTextAsync** method:
+Here is an example of how to use `findTextAsync`:
```html
@@ -55,7 +54,7 @@ export function App() {
);
{% endhighlight %}
{% endtabs %}
-### Description:
+### Description
The `findTextAsync` method is designed for performing an asynchronous text search within a PDF document. You can use it to search for a single string or multiple strings, with the ability to control case sensitivity. By default, the search is applied to all pages of the document. However, you can adjust this behavior by specifying the page number (pageIndex), which allows you to search only a specific page if needed.
-### Parameters:
+### Parameters
-**text (string | string[]):**
+**text (string | string[]):** The text or array of texts to search for in the document.
-The text or an array of texts you want to search for in the document.
+**matchCase (boolean):** Whether the search is case-sensitive. `true` matches exact case; `false` ignores case.
-**matchCase (boolean):**
+**pageIndex (optional, number):** Zero-based page index to search. If omitted, searches all pages.
-Indicates whether the search should be case-sensitive.
-When set to true, the search will match the exact case.
-When set to false, the search will ignore case differences.
-
-**pageIndex (optional, number):**
-
-Specifies the page number (zero-based index) to search within the document.
-If not provided, the search will be performed across all pages in the document.
-For example, passing 0 would search only the first page of the document.
-
-### Example Workflow:
+### Example workflow
**findTextAsync('pdf', false):**
This will search for the term "pdf" in a case-insensitive manner across all pages of the document.
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/get-base64.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/get-base64.md
index 38a4538ee..d3b39e1a2 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/get-base64.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/get-base64.md
@@ -1,22 +1,21 @@
---
layout: post
-title: Retrieving Base64 Value in React Pdfviewer component | Syncfusion
-description: Learn here all about how to retrieve the Base64 value in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Toolbar
+title: Get Base64 from loaded PDF in React PDF Viewer | Syncfusion
+description: Learn how to retrieve the Base64 value of a loaded PDF in the Syncfusion React PDF Viewer using saveAsBlob and FileReader.
+control: PDF Viewer
platform: document-processing
documentation: ug
-domainurl: ##DomainURL##
---
-# Retrieving Base64 Value from a PDF in PDF Viewer
+# Get Base64 value from a loaded PDF
### Overview
-This guide demonstrates how to fetch the base64-encoded value of a PDF document loaded in the Syncfusion® PDF Viewer using React. This is useful for sending the PDF as a base64 string or processing it in the front end.
+This guide shows how to get the base64-encoded value of a PDF loaded in the Syncfusion PDF Viewer using React. This is useful for sending the PDF as a base64 string or processing it on the client.
### How to Retrieve Base64 Value
-**Step 1:** Follow the steps provided in the [link](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started) to create a simple PDF Viewer sample.
+**Step 1:** Follow the steps in the [Get started with React PDF Viewer](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started) guide to create a sample.
**Step 2:** Set Up Your React Component
@@ -178,6 +177,6 @@ root.render();
### Conclusion
-By implementing these steps in your React application, you can convert a PDF document loaded in the Syncfusion® PDF Viewer to a base64 string upon button click. This facilitates the manipulation or transfer of PDF data as needed.
+By following these steps, a loaded PDF can be converted to a Base64 string on button click for transfer or processing.
[View sample in GitHub](https://github.com/SyncfusionExamples/react-pdf-viewer-examples/tree/master/How%20to)
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/getPageInfo.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/getPageInfo.md
index 6fee041e2..18734eaa7 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/getPageInfo.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/getPageInfo.md
@@ -1,22 +1,22 @@
---
layout: post
-title: Get Page Info in React PDF Viewer component | Syncfusion
-description: Learn here all about Get Page Info in Syncfusion React PDF Viewer component of Syncfusion Essential JS 2 and more.
+title: Get page info in React PDF Viewer | Syncfusion
+description: Learn how to retrieve page height, width, and rotation using getPageInfo in the Syncfusion React PDF Viewer.
control: PDF Viewer
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---
-# Get Page Info in React Pdfviewer component
+# Get page info in React PDF Viewer
-The PDF Viewer library allows you to retrieves the information of a specified page in the viewer using the **getPageInfo()** method.This provides Essential® information such as the height, width and rotation.
+Use the **getPageInfo()** method to retrieve information for a specified page, including height, width, and rotation.
-The following steps are used to getPageInfo.
+The following steps show how to use `getPageInfo`.
-**Step 1:** Follow the steps provided in the [link](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started/) to create a simple PDF Viewer sample.
+**Step 1:** Follow the steps in the [Get started with React PDF Viewer](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started/) guide to create a sample.
-**Step 2:** The following code snippet to implement the functionality for retrieving height, width and rotation of a specified page in the viewer.
+**Step 2:** Use the following code to get the height, width, and rotation for a specified page.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -103,6 +103,6 @@ root.render();
{% endhighlight %}
{% endtabs %}
-By following these steps, you can successfully integrate and use the get page info API in the EJ2 PDF Viewer.
+By following these steps, the page info API can be integrated and used in the EJ2 PDF Viewer.
[View Sample in GitHub](https://github.com/SyncfusionExamples/react-pdf-viewer-examples/tree/master/How%20to)
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/import-export-annotation.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/import-export-annotation.md
index 42f0b4201..ecdb215d1 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/import-export-annotation.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/import-export-annotation.md
@@ -1,22 +1,21 @@
---
layout: post
-title: Import export annotation in React Pdfviewer component | Syncfusion
-description: Learn here all about Import export annotation in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Import export annotation object
+title: Import and export annotations in React PDF Viewer | Syncfusion
+description: Learn how to import and export annotations as objects, JSON, or XFDF in the Syncfusion React PDF Viewer.
+control: PDF Viewer
platform: document-processing
documentation: ug
-domainurl: ##DomainURL##
---
-# Import export annotation in React Pdfviewer component
+# Import and export annotations in React PDF Viewer
-The PDF Viewer library allows you to import annotations from objects or streams instead of loading it as a file. To import such annotation objects, the PDF Viewer control must export the PDF annotations as objects using the [**ExportAnnotationsAsObject()**](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#exportannotationsasobject) method. Only the annotations objects that are exported from the PDF Viewer can be imported.
+Import annotations from objects or streams instead of files. To import such objects, first export annotations as objects using the [exportAnnotationsAsObject()](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#exportannotationsasobject) method. Only objects exported from the PDF Viewer can be imported.
-The following steps are used to import and export annotations in various formats such as objects, JSON, and XFDF.
+Use the following steps to import and export annotations as objects, JSON, or XFDF.
**Step 1:** Follow the steps provided in the [link](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started/) to create a simple PDF Viewer sample.
-**Step 2:** Use the following code snippet to perform import and export annotation.
+**Step 2:** Use the following code to perform import and export operations.
```
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/load-document.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/load-document.md
index 19dc78c79..e02256a27 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/load-document.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/load-document.md
@@ -1,28 +1,27 @@
---
layout: post
-title: Load document in React Pdfviewer component | Syncfusion
-description: Learn here all about Load document in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Load document
+title: Load documents dynamically in React PDF Viewer | Syncfusion
+description: Learn how to load or switch PDF documents dynamically in the Syncfusion React PDF Viewer using the load method.
+control: PDF Viewer
platform: document-processing
documentation: ug
-domainurl: ##DomainURL##
---
-# Load document in React Pdfviewer component
+# Load documents dynamically in React PDF Viewer
-The PDF Viewer library allows to switch or load PDF documents dynamically after the initial load operation. To achieve this, load the PDF document as a base64 string or the file name into the PDF Viewer control using the [**Load()**](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#load) method dynamically.
+Load or switch PDF documents dynamically after the initial load. Use the [load](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#load) method to load a PDF by Base64 string or file name.
The following steps are used to load the PDF document dynamically.
-**Step 1:** Follow the steps provided in the [link](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started/) to create a simple PDF Viewer sample.
+**Step 1:** Follow the steps in the [Get started with React PDF Viewer](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started/) guide to create a sample.
-**Step 2:** Use the following code snippet to load the PDF document using a base64 string.
+**Step 2:** Use the following code to load a PDF using a Base64 string.
```
```
-**Step 3:** Use the following code snippet to the load PDF document the using document name.
+**Step 3:** Use the following code to load a PDF by document name.
```
```
-Similarly, to close the Bookmark pane programmatically, employ the following code snippet:
+To close the Bookmark pane programmatically, use the following code:
```
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/open-thumbnail.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/open-thumbnail.md
index e913cc788..f0afe2d2b 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/open-thumbnail.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/open-thumbnail.md
@@ -1,20 +1,19 @@
---
layout: post
-title: Open thumbnail in React Pdfviewer component | Syncfusion
-description: Learn here all about Open thumbnail in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Open thumbnail
+title: Open the thumbnail pane programmatically | Syncfusion
+description: Learn how to open the thumbnail pane programmatically in the Syncfusion React PDF Viewer using openThumbnailPane.
+control: PDF Viewer
platform: document-processing
documentation: ug
-domainurl: ##DomainURL##
---
-# Open thumbnail in React Pdfviewer component
+# Open the thumbnail pane programmatically
-The PDF Viewer library allows you to open the thumbnail pane programmatically using the [**openThumbnailPane()**](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/thumbnailView/#openthumbnailpane) method.
+Open the thumbnail pane programmatically using the [openThumbnailPane()](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/thumbnailView/#openthumbnailpane) method.
The following steps are used to open the thumbnail.
-**Step 1:** Follow the steps provided in the [link](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started/) to create a simple PDF Viewer sample.
+**Step 1:** Follow the steps in the [Get started with React PDF Viewer](https://help.syncfusion.com/react/document-processing/pdf/pdf-viewer/react/getting-started/) guide to create a sample.
**Step 2:** Use the following code snippet to open thumbnail.
@@ -30,4 +29,4 @@ The following steps are used to open the thumbnail.
```
-Find the sample [how to open the thumbnail pane programmatically](https://stackblitz.com/edit/react-8rp7h2?file=public%2Findex.html)
\ No newline at end of file
+Find the sample: [Open the thumbnail pane programmatically](https://stackblitz.com/edit/react-8rp7h2?file=public%2Findex.html)
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/pagerenderstarted-pagerendercompleted-event.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/pagerenderstarted-pagerendercompleted-event.md
index bc187bf04..70f4b0817 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/pagerenderstarted-pagerendercompleted-event.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/pagerenderstarted-pagerendercompleted-event.md
@@ -1,24 +1,23 @@
---
layout: post
-title: Rendering event in React PDF Viewer component | Syncfusion
-description: Learn here all about pageRenderInitiate and pageRenderComplete event in Syncfusion React PDF Viewer component of Syncfusion Essential JS 2 and more.
+title: Handle pageRenderInitiate and pageRenderComplete | Syncfusion
+description: Learn how to use the pageRenderInitiate and pageRenderComplete events in the Syncfusion React PDF Viewer during page rendering.
control: PDF Viewer
platform: document-processing
documentation: ug
-domainurl: ##DomainURL##
---
-# PageRenderInitiate and PageRenderComplete event
+# Handle pageRenderInitiate and pageRenderComplete events
-In Syncfusion® PDF Viewer, `pageRenderInitiate` and `pageRenderComplete` actions are events that occur during the rendering process of PDF documents.
+In the Syncfusion PDF Viewer, the [pageRenderInitiate](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#pagerenderinitiate) and [pageRenderComplete](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#pagerendercomplete) events occur during page rendering.
-**PageRenderInitiate**
+**pageRenderInitiate**
-The `pageRenderInitiate` event is triggered when the rendering of a page in the PDF document begins. This event provides developers with an opportunity to perform any necessary initialization or setup before the rendering of the page content commences. It can be utilized to prepare resources, set up rendering parameters, or execute any other actions required before the page rendering process starts.
+Triggered when page rendering begins. Use this event to initialize or set up resources before rendering starts.
**PageRenderComplete**
-The `pageRenderComplete` event is triggered when the rendering of a page in the PDF document is completed. This event allows developers to perform cleanup tasks or finalize rendering-related processes after the rendering of the page content finishes. It can be used to release resources, finalize rendering settings, or handle any post-rendering tasks necessary for the application.
+Triggered when page rendering completes. Use this event to perform cleanup or finalize rendering-related tasks.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -50,7 +49,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
pageRenderInitiate={pageRenderInitiate}
pageRenderComplete={pageRenderComplete}
style={{ 'height': '640px' }}>
@@ -115,4 +114,4 @@ root.render();
The provided code demonstrates how to subscribe to the `pageRenderStart` and `pageRenderComplete` events in the Syncfusion® PDF Viewer component.
-[View sample in GitHub](https://github.com/SyncfusionExamples/react-pdf-viewer-examples/tree/master/How%20to/PageRenderStarted%20and%20PageRenderCompleted%20event)
\ No newline at end of file
+The following code demonstrates how to subscribe to these events in the Syncfusion PDF Viewer component.
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/perform-form-field-double-click-event.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/perform-form-field-double-click-event.md
index c0395e8d2..713efcafb 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/perform-form-field-double-click-event.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/perform-form-field-double-click-event.md
@@ -23,7 +23,7 @@ The PDF Viewer library allows you to trigger an event when you double click on t
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/resolve-unable-to-find-an-entry-point-error.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/resolve-unable-to-find-an-entry-point-error.md
index 45b9ead4b..50cbd0fa3 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/resolve-unable-to-find-an-entry-point-error.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/resolve-unable-to-find-an-entry-point-error.md
@@ -1,26 +1,25 @@
---
layout: post
-title: Find an entry point error in React Pdfviewer component | Syncfusion
-description: Learn here how to resolve unable to find an entry point named error in React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Resolve unable to find an entry point error
+title: Resolve “unable to find an entry point” error | Syncfusion
+description: Learn how to resolve the “unable to find an entry point” error after upgrading the Pdfium package in the Syncfusion React PDF Viewer.
+control: PDF Viewer
platform: document-processing
documentation: ug
-domainurl: ##DomainURL##
---
-# Resolve "Unable to find an entry point named FPDFText_GetCharAngle" error
+# Resolve “unable to find an entry point” error
-From the release of version **21.1.0.35 (2023 Volume 1)** of Essential Studio®, the Pdfium package has been upgraded to improve various functionalities like text search, text selection, rendering, and even performance. If you are updating your project to this version of the Syncfusion PDF Viewer, you may encounter the **"Web-Service is not listening"** error. The Network tab can help you identify the root cause of the issue, which is typically caused by an old version of pdfium assembly being referenced in the local web service project. Below are the assemblies to be referred to in the respective operating systems.
+Starting with **21.1.0.35 (2023 Volume 1)**, the Pdfium package was upgraded to improve text search, selection, rendering, and performance. After upgrading, the PDF Viewer may display a **“Web-Service is not listening”** error. In most cases, the Network tab reveals that an outdated Pdfium assembly is referenced in the local web service project. Ensure the correct native assembly is deployed for the target OS:
-* Windows – pdfium.dll
-* Linux – libpdfium.so
-* OSX – libpdfium.dylib
+- Windows: pdfium.dll
+- Linux: libpdfium.so
+- macOS: libpdfium.dylib

-## To solve this issue, you should follow the below steps:
+## Resolution steps
-1. Clear the bin and object files of the web-service project.
-2. Re-publish the web-service project.
+1. Delete the bin and obj folders in the web service project.
+2. Rebuild and republish the web service.
-N> **Note:** If you are hosting your application in Azure, AWS, or in Linux environments, delete the older published files and republish the application.
\ No newline at end of file
+N> If hosting in Azure, AWS, or Linux environments, remove old published files on the server before republishing.
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/restricting-zoom-in-mobile-mode.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/restricting-zoom-in-mobile-mode.md
index 8442ac9d5..5b4dadc43 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/restricting-zoom-in-mobile-mode.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/restricting-zoom-in-mobile-mode.md
@@ -1,16 +1,15 @@
---
layout: post
-title: Restrict Zoom Percentage in React PDF Viewer component | Syncfusion
-description: Learn here all how to restrict zoom percentage in Syncfusion React PDF Viewer component of Syncfusion Essential JS 2 and more.
+title: Restrict zoom percentage on mobile devices | Syncfusion
+description: Learn how to restrict zoom percentage on mobile devices using minZoom and maxZoom in the Syncfusion React PDF Viewer.
control: PDF Viewer
platform: document-processing
documentation: ug
-domainurl: ##DomainURL##
---
-# How to Restrict Zoom Percentage on Mobile Devices
+# Restrict zoom percentage on mobile devices
-In Syncfusion® PDF Viewer, you can easily restrict the zoom percentage on mobile devices using the **maxZoom** and **minZoom** property. This feature allows you to set specific limits for zooming, ensuring smoother scrolling performance and efficient document loading, on mobile devices.
+Restrict zoom on mobile devices using the `maxZoom` and `minZoom` properties. This improves scrolling performance and document loading on mobile.
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -41,7 +40,7 @@ function App() {
@@ -101,4 +100,6 @@ root.render();
{% endhighlight %}
{% endtabs %}
+This limits maximum zoom to 200% and minimum zoom to 10% on mobile devices, helping prevent performance issues from excessive zooming.
+
[View sample in GitHub](https://github.com/SyncfusionExamples/react-pdf-viewer-examples/tree/master/How%20to/Restrict%20Zoom%20Percentage%20on%20Mobile%20Devices)
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/show-custom-stamp-item.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/show-custom-stamp-item.md
index b7a2e74ff..2fb298086 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/show-custom-stamp-item.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/show-custom-stamp-item.md
@@ -1,26 +1,25 @@
---
layout: post
-title: Displaying Custom Items in React Pdfviewer component | Syncfusion
-description: Learn how to display custom items in the custom stamp Dropdown in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Toolbar
+title: Show custom items in the Custom Stamp dropdown | Syncfusion
+description: Learn how to display custom items in the Custom Stamp dropdown using customStampSettings in the Syncfusion React PDF Viewer.
+control: PDF Viewer
platform: document-processing
documentation: ug
-domainurl: ##DomainURL##
---
-# Displaying Custom Items in Custom Stamp Dropdown
+# Show custom items in the Custom Stamp dropdown
### Overview
-This guide explains how to add and display custom items in the custom stamp dropdown menu of Syncfusion's PDF Viewer using React. This feature allows users to easily access and apply custom stamps to their PDF documents.
+Add and display custom items in the Custom Stamp dropdown using React. This enables users to quickly apply personalized stamps in the PDF Viewer.
-### Steps to Show Custom Items in Custom Stamp Dropdown
+### Steps to show custom items in the Custom Stamp dropdown
-**Step 1:** Follow the steps provided in the [link](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started) to create a simple PDF Viewer sample.
+**Step 1:** Follow the steps in the [Get started with React PDF Viewer](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started) guide to create a sample.
-**Step 2:** Configure Custom Stamp Settings
+**Step 2:** Configure custom stamp settings
Within the PDF Viewer setup, utilize `customStampSettings` to specify the custom stamps that should appear in the dropdown menu.
@@ -75,7 +74,7 @@ class App extends React.Component {
ref={this.viewerRef}
id="PdfViewer"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/27.2.2/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
customStampSettings={customStampSettings}
style={{ height: '640px' }}
>
@@ -182,6 +181,6 @@ root.render();
{% endtabs %}
-By following these instructions, you can successfully configure to display custom items in the custom stamp dropdown, allowing users to easily apply personalized stamps to their documents.
+Use `customStampSettings` to specify the custom stamps that should appear in the dropdown menu.
[View sample in GitHub](https://github.com/SyncfusionExamples/react-pdf-viewer-examples/tree/master/How%20to)
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/show-hide-annotation.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/show-hide-annotation.md
index b966d72ec..0ed136fe3 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/show-hide-annotation.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/show-hide-annotation.md
@@ -1,22 +1,21 @@
---
layout: post
-title: Show and Hide Annotations in React Pdfviewer component | Syncfusion
-description: Learn here all about how to show and hide annotations in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Pdfviewer
+title: Show or hide annotations in React PDF Viewer | Syncfusion
+description: Learn how to toggle annotation visibility in the Syncfusion React PDF Viewer by exporting and importing annotations.
+control: PDF Viewer
platform: document-processing
documentation: ug
-domainurl: ##DomainURL##
---
-# Show and Hide Annotations in PDF Viewer
+# Show or hide annotations in the PDF Viewer
### Overview
-This guide demonstrates how to toggle the visibility of annotations in the Syncfusion PDF Viewer component for React. This functionality is useful when you need to temporarily hide annotations for a cleaner view or show them again for collaborative review.
+Toggle annotation visibility in the Syncfusion PDF Viewer using React. Hide annotations for a cleaner view and show them again as needed.
### How to Show and Hide Annotations
-**Step 1:** Follow the steps provided in the [link](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started) to create a simple PDF Viewer sample.
+**Step 1:** Follow the steps in the [Get started with React PDF Viewer](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/getting-started) guide to create a sample.
**Step 2:** Set Up Your React Component with Annotation Toggle Functionality
@@ -92,7 +91,7 @@ export class App extends React.Component {
@@ -126,6 +125,6 @@ root.render();
### Conclusion
-The ability to show and hide annotations provides users with a more flexible viewing experience. By implementing this functionality, you can allow users to focus on the document content without distractions when needed, and bring back annotations for collaborative review.
+These steps add the ability to toggle annotation visibility in a PDF Viewer application for selective viewing.
[View sample in GitHub](https://github.com/SyncfusionExamples/react-pdf-viewer-examples/tree/master/How%20to)
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/signatureselect-signatureunselect.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/signatureselect-signatureunselect.md
index 84ce1ae70..0f82ec904 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/signatureselect-signatureunselect.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/signatureselect-signatureunselect.md
@@ -1,26 +1,26 @@
---
layout: post
-title: Signature selection events in React PDF Viewer component | Syncfusion
-description: Learn here all about signatureSelect and signatureUnselect event in Syncfusion React PDF Viewer component of Syncfusion Essential JS 2 and more.
+title: Handle signatureSelect and signatureUnselect events | Syncfusion
+description: Learn how to handle signatureSelect and signatureUnselect events in the Syncfusion React PDF Viewer to manage handwritten signature selection state.
control: PDF Viewer
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---
-# SignatureSelect and SignatureUnselect event
+# Handle signatureSelect and signatureUnselect events
-The Syncfusion® PDF Viewer provides event-handling capabilities for various actions, including selecting and unselecting handwritten signatures. The `signatureSelect` and `signatureUnselect` events enable developers to programmatically manage the selection state of signatures within the PDF Viewer component.
+Use the [signatureSelect](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#signatureselect) and [signatureUnselect](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/#signatureunselect) events to manage the selection state of handwritten signatures in the PDF Viewer.
**signatureSelect**
-The `signatureSelect` event triggers when a handwritten signature annotation is selected. This event allows developers to capture the signature selection and handle it programmatically, such as updating the UI or storing the selection data for further processing.
+Triggered when a handwritten signature annotation is selected. Use this event to capture selection and update the UI or store state.
**signatureUnselect**
-The `signatureUnselect` event triggers when a handwritten signature annotation is unselected. This event enables developers to manage the unselection programmatically, which can be useful for tasks like cleanup operations or updating the application's state to reflect that a signature is no longer selected.
+Triggered when a handwritten signature annotation is unselected. Use this event to handle cleanup or update application state.
-The code snippet demonstrates how to subscribe to the `signatureSelect` and `signatureUnselect` events in the Syncfusion® PDF Viewer component.
+The following code demonstrates how to subscribe to these events:
{% tabs %}
{% highlight js tabtitle="Standalone" %}
@@ -49,7 +49,7 @@ function App() {
ref={(scope) => { pdfviewer = scope; }}
id="container"
documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
- resourceUrl="https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2-pdfviewer-lib"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
signatureSelect={signatureSelect}
signatureUnselect={signatureUnselect}
style={{ 'height': '640px' }}>
@@ -109,6 +109,6 @@ root.render();
{% endhighlight %}
{% endtabs %}
-The `signatureSelect` and `signatureUnselect` events in Syncfusion® PDF Viewer offer robust options for managing the state of handwritten signatures within your application. By handling these events, developers can create a more interactive and dynamic user experience, responding programmatically to signature selection and unselection.
+These events enable robust management of handwritten signature state, supporting interactive and dynamic user experiences.
-[View sample in GitHub]()
\ No newline at end of file
+[View sample in GitHub](https://github.com/SyncfusionExamples/react-pdf-viewer-examples/tree/master/How%20to)
\ No newline at end of file
diff --git a/Document-Processing/PDF/PDF-Viewer/react/how-to/unload-document.md b/Document-Processing/PDF/PDF-Viewer/react/how-to/unload-document.md
index c110e3f09..e6f1e1050 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/how-to/unload-document.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/how-to/unload-document.md
@@ -2,7 +2,7 @@
layout: post
title: Unload document in React Pdfviewer component | Syncfusion
description: Learn here all about Unload document in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Unload document
+control: PDF Viewer
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/add-revised.png b/Document-Processing/PDF/PDF-Viewer/react/images/add-revised.png
new file mode 100644
index 000000000..0e0a24bae
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/add-revised.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/add-shapes.png b/Document-Processing/PDF/PDF-Viewer/react/images/add-shapes.png
new file mode 100644
index 000000000..09ab8ef22
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/add-shapes.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/add-signature.png b/Document-Processing/PDF/PDF-Viewer/react/images/add-signature.png
new file mode 100644
index 000000000..3bf8fe062
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/add-signature.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/add-sticky-notes.png b/Document-Processing/PDF/PDF-Viewer/react/images/add-sticky-notes.png
new file mode 100644
index 000000000..d86780c44
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/add-sticky-notes.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/add-text-markup.png b/Document-Processing/PDF/PDF-Viewer/react/images/add-text-markup.png
new file mode 100644
index 000000000..7a09d8d5a
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/add-text-markup.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/adding-signature.png b/Document-Processing/PDF/PDF-Viewer/react/images/adding-signature.png
new file mode 100644
index 000000000..fd92aa760
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/adding-signature.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/after-enabling-annotation-toolbar.png b/Document-Processing/PDF/PDF-Viewer/react/images/after-enabling-annotation-toolbar.png
new file mode 100644
index 000000000..2387c4035
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/after-enabling-annotation-toolbar.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/change-property.png b/Document-Processing/PDF/PDF-Viewer/react/images/change-property.png
new file mode 100644
index 000000000..edb1b772d
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/change-property.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/close-comment-panel.png b/Document-Processing/PDF/PDF-Viewer/react/images/close-comment-panel.png
new file mode 100644
index 000000000..26af17938
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/close-comment-panel.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/comment-panel.png b/Document-Processing/PDF/PDF-Viewer/react/images/comment-panel.png
new file mode 100644
index 000000000..61c066ec0
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/comment-panel.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/delete-icon.png b/Document-Processing/PDF/PDF-Viewer/react/images/delete-icon.png
new file mode 100644
index 000000000..9c99dc690
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/delete-icon.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/edit-annotation.png b/Document-Processing/PDF/PDF-Viewer/react/images/edit-annotation.png
new file mode 100644
index 000000000..1b00dad78
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/edit-annotation.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/form-filling-signature-del.png b/Document-Processing/PDF/PDF-Viewer/react/images/form-filling-signature-del.png
new file mode 100644
index 000000000..0a320823d
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/form-filling-signature-del.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/form-filling-signature-dialog.png b/Document-Processing/PDF/PDF-Viewer/react/images/form-filling-signature-dialog.png
new file mode 100644
index 000000000..e6e87df83
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/form-filling-signature-dialog.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/form-filling-signature-signed.png b/Document-Processing/PDF/PDF-Viewer/react/images/form-filling-signature-signed.png
new file mode 100644
index 000000000..93470a0f5
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/form-filling-signature-signed.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/form-filling-signature.png b/Document-Processing/PDF/PDF-Viewer/react/images/form-filling-signature.png
new file mode 100644
index 000000000..9be25488e
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/form-filling-signature.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/form-filling.png b/Document-Processing/PDF/PDF-Viewer/react/images/form-filling.png
new file mode 100644
index 000000000..42c9b0064
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/form-filling.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/ink-annotation.png b/Document-Processing/PDF/PDF-Viewer/react/images/ink-annotation.png
new file mode 100644
index 000000000..163a1130e
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/ink-annotation.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/open-comment.png b/Document-Processing/PDF/PDF-Viewer/react/images/open-comment.png
new file mode 100644
index 000000000..900069fad
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/open-comment.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/open-fillcolor.png b/Document-Processing/PDF/PDF-Viewer/react/images/open-fillcolor.png
new file mode 100644
index 000000000..5eaa67806
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/open-fillcolor.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/open-ink.png b/Document-Processing/PDF/PDF-Viewer/react/images/open-ink.png
new file mode 100644
index 000000000..c52125247
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/open-ink.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/open-radius.png b/Document-Processing/PDF/PDF-Viewer/react/images/open-radius.png
new file mode 100644
index 000000000..0dd083a9c
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/open-radius.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/open-stamp.png b/Document-Processing/PDF/PDF-Viewer/react/images/open-stamp.png
new file mode 100644
index 000000000..74ccf1664
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/open-stamp.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/radius-annotation.png b/Document-Processing/PDF/PDF-Viewer/react/images/radius-annotation.png
new file mode 100644
index 000000000..2559f6da8
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/radius-annotation.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/select-text.png b/Document-Processing/PDF/PDF-Viewer/react/images/select-text.png
new file mode 100644
index 000000000..b7d119b38
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/select-text.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/images/sticky-notes-in-page.png b/Document-Processing/PDF/PDF-Viewer/react/images/sticky-notes-in-page.png
new file mode 100644
index 000000000..3a96cc714
Binary files /dev/null and b/Document-Processing/PDF/PDF-Viewer/react/images/sticky-notes-in-page.png differ
diff --git a/Document-Processing/PDF/PDF-Viewer/react/interaction-mode.md b/Document-Processing/PDF/PDF-Viewer/react/interaction-mode.md
index dfbca88df..8fd6b38d3 100644
--- a/Document-Processing/PDF/PDF-Viewer/react/interaction-mode.md
+++ b/Document-Processing/PDF/PDF-Viewer/react/interaction-mode.md
@@ -2,7 +2,7 @@
layout: post
title: Interaction mode in React Pdfviewer component | Syncfusion
description: Learn here all about Interaction mode in Syncfusion React Pdfviewer component of Syncfusion Essential JS 2 and more.
-control: Interaction mode
+control: PDF Viewer
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
@@ -34,7 +34,7 @@ function App() {
@@ -113,7 +113,7 @@ function App() {
diff --git a/Document-Processing/PDF/PDF-Viewer/react/interactive-pdf-navigation/bookmark-navigation.md b/Document-Processing/PDF/PDF-Viewer/react/interactive-pdf-navigation/bookmark-navigation.md
new file mode 100644
index 000000000..8fbb6a65d
--- /dev/null
+++ b/Document-Processing/PDF/PDF-Viewer/react/interactive-pdf-navigation/bookmark-navigation.md
@@ -0,0 +1,190 @@
+---
+layout: post
+title: Navigation in React Pdfviewer control | Syncfusion
+description: Learn here all about Navigation in Syncfusion React Pdfviewer control of Syncfusion Essential JS 2 and more.
+platform: document-processing
+control: PDF Viewer
+documentation: ug
+domainurl: ##DomainURL##
+---
+
+# Bookmark navigation in React PDF Viewer control
+
+The Bookmarks saved in PDF files are loaded and made ready for easy navigation.
+You can enable/disable bookmark navigation by using the following code snippet.,
+
+{% tabs %}
+{% highlight ts tabtitle="Standalone" %}
+
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import {
+ PdfViewerComponent,
+ Toolbar,
+ Magnification,
+ Navigation,
+ LinkAnnotation,
+ Annotation,
+ ThumbnailView,
+ BookmarkView,
+ TextSelection,
+ Inject
+} from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ let pdfviewer;
+ return (
+ { pdfviewer = scope; }}
+ enableBookmark={true}
+ documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
+ resourceUrl="https://cdn.syncfusion.com/ej2/31.2.2/dist/ej2-pdfviewer-lib"
+ style={{ height: '500px', width: '100%' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('PdfViewer'));
+root.render();
+
+{% endhighlight %}
+{% highlight ts tabtitle="Server-Backed" %}
+
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import {
+ PdfViewerComponent,
+ Toolbar,
+ Magnification,
+ Navigation,
+ LinkAnnotation,
+ Annotation,
+ ThumbnailView,
+ BookmarkView,
+ TextSelection,
+ Inject
+} from '@syncfusion/ej2-react-pdfviewer';
+
+function App() {
+ let pdfviewer;
+ return (
+ { pdfviewer = scope; }}
+ enableBookmark={true}
+ documentPath="https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf"
+ serviceUrl="https://document.syncfusion.com/web-services/pdf-viewer/api/pdfviewer/"
+ style={{ height: '500px', width: '100%' }}
+ >
+
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('PdfViewer'));
+root.render();
+
+{% endhighlight %}
+{% endtabs %}
+
+
+
+To perform bookmark navigation, you can use the **goToBookmark** method. It's important to note that the **goToBookmark** method will throw an error if the specified bookmark does not exist in the PDF document.
+
+Here is an example of how to use the **goToBookmark** method:
+
+```
+
+```
+
+```ts
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, BookmarkView, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+let pdfviewer;
+
+function App() {
+ const onGoToBookmark = () => {
+ // x - pageIndex, y - Y coordinate
+ pdfviewer && pdfviewer.bookmark.goToBookmark(x, y);
+ };
+
+ return (
+
+ );
+}
+
+const root = ReactDOM.createRoot(document.getElementById('PdfViewer'));
+root.render();
+```
+
+x - Specifies the pageIndex for Navigate.
+
+y - Specifies the Y coordinates value of the Page.
+
+Also, you can use the **getBookmarks** method to retrieve a list of all the bookmarks in a PDF document. This method returns a List of Bookmark objects, which contain information about each bookmark.
+
+Here is an example of how to use the getBookmarks method:
+
+```
+
+```
+
+```ts
+import * as React from 'react';
+import * as ReactDOM from 'react-dom/client';
+import { PdfViewerComponent, BookmarkView, Inject } from '@syncfusion/ej2-react-pdfviewer';
+
+let pdfviewer;
+
+function App() {
+ const onGetBookmarks = () => {
+ var getBookmarks = pdfviewer && pdfviewer.bookmark.getBookmarks();
+ console.log(getBookmarks);
+ };
+
+ return (
+