Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
aabab2b
984868: Update the height in React Document Editor
ManoSF4839 Oct 20, 2025
8f59107
984868: Added you tube link for angular export as PDF document editor
ManoSF4839 Oct 20, 2025
06a2a9c
988160: Code changes for Track changes Document editor
ManoSF4839 Oct 23, 2025
a165893
Fix link formatting in track changes documentation
ManoSF4839 Oct 23, 2025
c3b622f
260329-ug: Added the code sample for create PDF page based on the ima…
sameerkhan001 Oct 27, 2025
1947a1f
Merge branch 'hotfix/hotfix-v31.2.2' of https://github.com/syncfusion…
sameerkhan001 Oct 27, 2025
6cc4295
989050-ug1: Added PdfUnitConvertor for Unit Conversion in PDF Text La…
sameerkhan001 Oct 27, 2025
1f27d6b
986927: UG Docs Revamp: Annotation Events, Toolbar Restructure & Feat…
MuralidharanGSF4527 Oct 27, 2025
195d927
986927: UG Docs Revamp: Annotation Events, Toolbar Restructure & Feat…
MuralidharanGSF4527 Oct 27, 2025
487ba76
972568: Documentation on setLineSpacingAsync() for Document Editor
ManoSF4839 Oct 27, 2025
9dae8bf
984540: JS docs revamp for hotfix
BalajiLoganathanSF4826 Oct 27, 2025
0c052e0
988874-ModifyStreams-Working with Formulas
SivakumarRamya Oct 27, 2025
3c7fc9f
986927: resolved CI issues
MuralidharanGSF4527 Oct 28, 2025
00541e5
Merge branch 'hotfix/hotfix-v31.2.2' of https://github.com/syncfusion…
sameerkhan001 Oct 28, 2025
9b17f99
989050-ug1: Resolved CI failures.
sameerkhan001 Oct 28, 2025
36d10e6
260329-ug: Updated the API name.
sameerkhan001 Oct 28, 2025
586e080
Merge branch 'hotfix/hotfix-v31.2.2' of https://github.com/syncfusion…
sameerkhan001 Oct 28, 2025
3f57912
986927: resolved the CI issues
MuralidharanGSF4527 Oct 28, 2025
5396dc7
Merge branch 'hotfix/hotfix-v31.2.2' into EJ2-984540-pv-js-docs-hf
BalajiLoganathanSF4826 Oct 28, 2025
4c84bc7
Merge pull request #1646 from syncfusion-content/989050-ug1
chinnumuniyappan Oct 28, 2025
b179d2e
Merge branch 'hotfix/hotfix-v31.2.2' of https://github.com/syncfusion…
MuralidharanGSF4527 Oct 28, 2025
2494a10
988621: Resolved build failure issues and added playground link.
sameerkhan001 Oct 28, 2025
c97758f
Merge pull request #1657 from syncfusion-content/988621
chinnumuniyappan Oct 28, 2025
a674fc7
260329-ug: Resolved the given feedback.
sameerkhan001 Oct 28, 2025
acb477a
Merge branch 'hotfix/hotfix-v31.2.2' of https://github.com/syncfusion…
sameerkhan001 Oct 28, 2025
6d6d0be
Merge pull request #1644 from syncfusion-content/260329-ug
chinnumuniyappan Oct 28, 2025
d52cb20
Merge pull request #1651 from syncfusion-content/EJ2-984540-pv-js-doc…
AnanthaGokulaRaman Oct 28, 2025
d733020
Merge branch 'hotfix/hotfix-v31.2.2' into EJ2-986927-pdfviewerH
MuralidharanGSF4527 Oct 28, 2025
2b388ae
Merge pull request #1653 from syncfusion-content/988874-ModifyStreams
Mohan2401 Oct 28, 2025
6525b8b
986927: resolved CI
MuralidharanGSF4527 Oct 28, 2025
c5ea5a9
Merge branch 'hotfix/hotfix-v31.2.2' of https://github.com/syncfusion…
MuralidharanGSF4527 Oct 28, 2025
59d3118
Merge branch 'EJ2-986927-pdfviewerH' of https://github.com/syncfusion…
MuralidharanGSF4527 Oct 28, 2025
3ba60cf
986927: added proper title
MuralidharanGSF4527 Oct 28, 2025
659dd7f
Merge branch 'hotfix/hotfix-v31.2.2' into 972568-BlazorH
ManoSF4839 Oct 28, 2025
1744557
Merge pull request #1608 from syncfusion-content/988160-hottrack
MohanaselvamJothi Oct 28, 2025
e6f63e5
Merge pull request #1593 from syncfusion-content/984868-reactHot
MohanaselvamJothi Oct 28, 2025
31f8eb7
Merge pull request #1595 from syncfusion-content/984868-youhot
MohanaselvamJothi Oct 28, 2025
496276a
Merge pull request #1648 from syncfusion-content/EJ2-986927-pdfviewerH
AnanthaGokulaRaman Oct 28, 2025
644cc10
Merge pull request #1649 from syncfusion-content/972568-BlazorH
MohanaselvamJothi Oct 28, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
172 changes: 137 additions & 35 deletions Document-Processing-toc.html

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())

#region Save
//Saving the workbook
FileStream outputStream = new FileStream(Path.GetFullPath("Output/Formula.xlsx"), FileMode.Create, FileAccess.Write);
workbook.SaveAs(outputStream);
workbook.SaveAs(Path.GetFullPath("Output/Formula.xlsx"));
#endregion

//Dispose streams
outputStream.Dispose();
}
{% endhighlight %}

Expand Down Expand Up @@ -163,12 +159,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())

#region Save
//Saving the workbook
FileStream outputStream = new FileStream(Path.GetFullPath("Output/Formula.xlsx"), FileMode.Create, FileAccess.Write);
workbook.SaveAs(outputStream);
workbook.SaveAs(Path.GetFullPath("Output/Formula.xlsx"));
#endregion

//Dispose streams
outputStream.Dispose();
}
{% endhighlight %}

Expand Down Expand Up @@ -261,12 +253,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())

#region Save
//Saving the workbook
FileStream outputStream = new FileStream(Path.GetFullPath("Output/Formula.xlsx"), FileMode.Create, FileAccess.Write);
workbook.SaveAs(outputStream);
workbook.SaveAs(Path.GetFullPath("Output/Formula.xlsx"));
#endregion

//Dispose streams
outputStream.Dispose();
}
{% endhighlight %}

Expand Down Expand Up @@ -344,12 +332,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())

#region Save
//Saving the workbook
FileStream outputStream = new FileStream(Path.GetFullPath("Output/Formula.xlsx"), FileMode.Create, FileAccess.Write);
workbook.SaveAs(outputStream);
workbook.SaveAs(Path.GetFullPath("Output/Formula.xlsx"));
#endregion

//Dispose streams
outputStream.Dispose();
}
//Output

Expand Down Expand Up @@ -469,12 +453,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())

#region Save
//Saving the workbook
FileStream outputStream = new FileStream(Path.GetFullPath("Output/Formula.xlsx"), FileMode.Create, FileAccess.Write);
workbook.SaveAs(outputStream);
workbook.SaveAs(Path.GetFullPath("Output/Formula.xlsx"));
#endregion

//Dispose streams
outputStream.Dispose();
}
{% endhighlight %}

Expand Down Expand Up @@ -537,12 +517,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())

#region Save
//Saving the workbook
FileStream outputStream = new FileStream(Path.GetFullPath("Output/Formula.xlsx"), FileMode.Create, FileAccess.Write);
workbook.SaveAs(outputStream);
workbook.SaveAs(Path.GetFullPath("Output/Formula.xlsx"));
#endregion

//Dispose streams
outputStream.Dispose();
}
{% endhighlight %}

Expand Down Expand Up @@ -615,12 +591,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())

#region Save
//Saving the workbook
FileStream outputStream = new FileStream(Path.GetFullPath("Output/IncrementalFormula.xlsx"), FileMode.Create, FileAccess.Write);
workbook.SaveAs(outputStream);
workbook.SaveAs(Path.GetFullPath("Output/IncrementalFormula.xlsx"));
#endregion

//Dispose streams
outputStream.Dispose();
}
{% endhighlight %}

Expand Down Expand Up @@ -686,12 +658,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())

#region Save
//Saving the workbook
FileStream outputStream = new FileStream(Path.GetFullPath("Output/ExternalFormula.xlsx"), FileMode.Create, FileAccess.Write);
workbook.SaveAs(outputStream);
workbook.SaveAs(Path.GetFullPath("Output/ExternalFormula.xlsx"));
#endregion

//Dispose streams
outputStream.Dispose();
}
{% endhighlight %}

Expand Down Expand Up @@ -768,12 +736,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())

#region Save
//Saving the workbook
FileStream outputStream = new FileStream(Path.GetFullPath("Output/CalculatedColumn.xlsx"), FileMode.Create, FileAccess.Write);
workbook.SaveAs(outputStream);
workbook.SaveAs(Path.GetFullPath("Output/CalculatedColumn.xlsx"));
#endregion

//Dispose streams
outputStream.Dispose();
}
{% endhighlight %}

Expand Down Expand Up @@ -2098,10 +2062,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())
//Use the function. The expected result is 30
sheet.Range["A3"].Formula = "AddInFunction(10,20)";

//Saving the workbook as stream
FileStream stream = new FileStream("AddIn.xlsx", FileMode.Create, FileAccess.ReadWrite);
workbook.SaveAs(stream);
stream.Dispose();
//Saving the workbook
workbook.SaveAs(Path.GetFullPath("Output/AddIn.xlsx"));
}
{% endhighlight %}

Expand Down Expand Up @@ -2251,12 +2213,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())

#region Save
//Saving the workbook
FileStream outputStream = new FileStream(Path.GetFullPath("Output/Formula.xlsx"), FileMode.Create, FileAccess.Write);
workbook.SaveAs(outputStream);
workbook.SaveAs(Path.GetFullPath("Output/Formula.xlsx"));
#endregion

//Dispose streams
outputStream.Dispose();
}
{% endhighlight %}

Expand Down Expand Up @@ -2362,22 +2320,17 @@ Following code illustrates on how to ignore or set error indicators.
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);
application.DefaultVersion = ExcelVersion.Xlsx;
IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx"));
IWorksheet sheet = workbook.Worksheets[0];

//Sets warning if number is entered as text.
sheet.Range["A2:D2"].IgnoreErrorOptions = ExcelIgnoreError.NumberAsText;

#region Save
//Saving the workbook
FileStream outputStream = new FileStream(Path.GetFullPath("Output/FormulaAuditing.xlsx"), FileMode.Create, FileAccess.Write);
workbook.SaveAs(outputStream);
workbook.SaveAs(Path.GetFullPath("Output/FormulaAuditing.xlsx"));
#endregion

//Dispose streams
outputStream.Dispose();
}
{% endhighlight %}

Expand Down Expand Up @@ -2455,12 +2408,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())

#region Save
//Saving the workbook
FileStream outputStream = new FileStream(Path.GetFullPath("Output/CalculationMode.xlsx"), FileMode.Create, FileAccess.Write);
workbook.SaveAs(outputStream);
workbook.SaveAs(Path.GetFullPath("Output/CalculationMode.xlsx"));
#endregion

//Dispose streams
outputStream.Dispose();
}
{% endhighlight %}

Expand Down Expand Up @@ -2551,12 +2500,8 @@ using (ExcelEngine excelEngine = new ExcelEngine())

#region Save
//Saving the workbook
FileStream outputStream = new FileStream(Path.GetFullPath("Output/Iteration.xlsx"), FileMode.Create, FileAccess.Write);
workbook.SaveAs(outputStream);
workbook.SaveAs(Path.GetFullPath("Output/Iteration.xlsx"));
#endregion

//Dispose streams
outputStream.Dispose();
}
{% endhighlight %}

Expand Down
18 changes: 0 additions & 18 deletions Document-Processing/PDF/PDF-Library/NET/PdfGrid.md
Original file line number Diff line number Diff line change
Expand Up @@ -3645,7 +3645,6 @@ using Syncfusion.Pdf;
using Syncfusion.Pdf.Graphics;
using Syncfusion.Pdf.Grid;
using Syncfusion.Drawing;
using System.Reflection.Metadata;

//Create a new PDF document.
PdfDocument pdfDocument = new PdfDocument();
Expand Down Expand Up @@ -3685,7 +3684,6 @@ using Syncfusion.Pdf;
using Syncfusion.Pdf.Graphics;
using Syncfusion.Pdf.Grid;
using System.Drawing;
using System.Reflection.Metadata;

//Create a new PDF document.
PdfDocument pdfDocument = new PdfDocument();
Expand Down Expand Up @@ -3725,7 +3723,6 @@ Imports Syncfusion.Pdf
Imports Syncfusion.Pdf.Graphics
Imports Syncfusion.Pdf.Grid
Imports Syncfusion.Drawing
Imports System.Reflection.Metadata

'Create a new PDF document.
Dim pdfDocument As New PdfDocument()
Expand Down Expand Up @@ -3777,7 +3774,6 @@ using Syncfusion.Pdf.Graphics;
using Syncfusion.Pdf.Grid;
using Syncfusion.Pdf;
using Syncfusion.Drawing;
using System.Reflection.Metadata;

//Create a new PDF document.
PdfDocument pdfDocument = new PdfDocument();
Expand Down Expand Up @@ -3832,7 +3828,6 @@ using Syncfusion.Pdf.Graphics;
using Syncfusion.Pdf.Grid;
using Syncfusion.Pdf;
using System.Drawing;
using System.Reflection.Metadata;

//Create a new PDF document.
PdfDocument pdfDocument = new PdfDocument();
Expand Down Expand Up @@ -3886,7 +3881,6 @@ Imports Syncfusion.Pdf
Imports Syncfusion.Pdf.Graphics
Imports Syncfusion.Pdf.Grid
Imports Syncfusion.Drawing
Imports System.Reflection.Metadata

'Create a new PDF document.
Dim pdfDocument As PdfDocument = New PdfDocument()
Expand Down Expand Up @@ -3948,7 +3942,6 @@ using Syncfusion.Pdf.Graphics;
using Syncfusion.Pdf.Grid;
using Syncfusion.Pdf;
using Syncfusion.Drawing;
using System.Reflection.Metadata;

//Create a new PDF document.
PdfDocument pdfDocument = new PdfDocument();
Expand Down Expand Up @@ -4012,7 +4005,6 @@ using Syncfusion.Pdf.Graphics;
using Syncfusion.Pdf.Grid;
using Syncfusion.Pdf;
using System.Drawing;
using System.Reflection.Metadata;

//Create a new PDF document.
PdfDocument pdfDocument = new PdfDocument();
Expand Down Expand Up @@ -4078,7 +4070,6 @@ Imports Syncfusion.Pdf
Imports Syncfusion.Pdf.Graphics
Imports Syncfusion.Pdf.Grid
Imports Syncfusion.Drawing
Imports System.Reflection.Metadata

'Create a new PDF document.
Dim pdfDocument As PdfDocument = New PdfDocument()
Expand Down Expand Up @@ -4155,7 +4146,6 @@ using Syncfusion.Pdf.Graphics;
using Syncfusion.Pdf.Grid;
using Syncfusion.Pdf;
using Syncfusion.Drawing;
using System.Reflection.Metadata;

//Create a new PDF document.
PdfDocument pdfDocument = new PdfDocument();
Expand Down Expand Up @@ -4206,7 +4196,6 @@ using Syncfusion.Pdf.Graphics;
using Syncfusion.Pdf.Grid;
using Syncfusion.Pdf;
using System.Drawing;
using System.Reflection.Metadata;

//Create a new PDF document.
PdfDocument pdfDocument = new PdfDocument();
Expand Down Expand Up @@ -4257,7 +4246,6 @@ Imports Syncfusion.Pdf
Imports Syncfusion.Pdf.Graphics
Imports Syncfusion.Pdf.Grid
Imports Syncfusion.Drawing
Imports System.Reflection.Metadata

'Create a new PDF document.
Dim pdfDocument As PdfDocument = New PdfDocument()
Expand Down Expand Up @@ -4320,7 +4308,6 @@ using Syncfusion.Pdf.Graphics;
using Syncfusion.Pdf.Grid;
using Syncfusion.Pdf;
using Syncfusion.Drawing;
using System.Reflection.Metadata;

//Create a new PDF document.
PdfDocument pdfDocument = new PdfDocument();
Expand Down Expand Up @@ -4389,7 +4376,6 @@ using Syncfusion.Pdf.Graphics;
using Syncfusion.Pdf.Grid;
using Syncfusion.Pdf;
using System.Drawing;
using System.Reflection.Metadata;

//Create a new PDF document.
PdfDocument pdfDocument = new PdfDocument();
Expand Down Expand Up @@ -4459,7 +4445,6 @@ Imports Syncfusion.Pdf
Imports Syncfusion.Pdf.Graphics
Imports Syncfusion.Pdf.Grid
Imports Syncfusion.Drawing
Imports System.Reflection.Metadata

'Create a new PDF document.
Dim pdfDocument As PdfDocument = New PdfDocument()
Expand Down Expand Up @@ -4535,7 +4520,6 @@ The following code illustrates how to create the nested table in a PDF document
using Syncfusion.Pdf.Grid;
using Syncfusion.Pdf;
using Syncfusion.Drawing;
using System.Reflection.Metadata;

//Create a new PDF document.
PdfDocument pdfDocument = new PdfDocument();
Expand Down Expand Up @@ -4590,7 +4574,6 @@ pdfDocument.Close(true);
using Syncfusion.Pdf.Grid;
using Syncfusion.Pdf;
using System.Drawing;
using System.Reflection.Metadata;

//Create a new PDF document.
PdfDocument pdfDocument = new PdfDocument();
Expand Down Expand Up @@ -4645,7 +4628,6 @@ pdfDocument.Close(true);
Imports Syncfusion.Pdf
Imports Syncfusion.Pdf.Grid
Imports Syncfusion.Drawing
Imports System.Reflection.Metadata

'Create a new PDF document.
Dim pdfDocument As PdfDocument = New PdfDocument()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5074,7 +5074,7 @@ The [PdfAnnotationIntent.FreeTextTypeWriter](https://help.syncfusion.com/cr/docu

{% tabs %}

{% highlight c# tabtitle="C# [Cross-platform]" %}
{% highlight c# tabtitle="C# [Cross-platform]" playgroundButtonLink="https://raw.githubusercontent.com/SyncfusionExamples/PDF-Examples/master/Annotation/Setting-Annotation-Intent/.NET/Setting-Annotation-Intent/Program.cs" %}

using Syncfusion.Drawing;
using Syncfusion.Pdf;
Expand Down Expand Up @@ -5192,7 +5192,7 @@ End Using

{% endtabs %}

You can download a complete working sample from GitHub.
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/260329/Annotation/Setting-Annotation-Intent/.NET).

## Adding comments and review status to the PDF annotation

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ To open a file in relative path, the [PdfLaunchAction](https://help.syncfusion.c

{% endhighlight %}

{% highlight c# tabtitle="C#" [Windows-specific] %}
{% highlight c# tabtitle="C# [Windows-specific]" %}

using Syncfusion.Pdf;
using Syncfusion.Pdf.Interactive;
Expand Down Expand Up @@ -587,7 +587,7 @@ document.Close();

{% endhighlight %}

{% highlight vb.net tabtitle="VB.NET" [Windows-specific] %}
{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %}

Imports Syncfusion.Pdf
Imports Syncfusion.Pdf.Interactive
Expand Down
Loading