Skip to content

Commit 004de11

Browse files
Addressed the feedbacks
1 parent 67a82dc commit 004de11

File tree

2 files changed

+1
-4
lines changed
  • Tables/Reduce-height-of-empty-cells/.NET/Reduce-height-of-empty-cells

2 files changed

+1
-4
lines changed

Sections/Copy-header-footer-to-other-sections/.NET/Copy-header-footer-to-other-sections/Program.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
using Syncfusion.DocIO.DLS;
22
using Syncfusion.DocIO;
33

4-
//Register Syncfusion license
5-
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("Mgo+DSMBMAY9C3t2UlhhQlNHfV5DQmBWfFN0QXNYfVRwdF9GYEwgOX1dQl9nSXZTc0VlWndfcXNSQWc=");
6-
74
//Open an existing Word document from the specified file path.
85
using (FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"Data/Input.docx"), FileMode.Open, FileAccess.Read))
96
{

Tables/Reduce-height-of-empty-cells/.NET/Reduce-height-of-empty-cells/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using (FileStream inputFileStream = new FileStream(Path.GetFullPath("Data/Template.docx"), FileMode.Open, FileAccess.ReadWrite))
55
{
6-
//Opens an template Word document.
6+
//Opens the template Word document.
77
using (WordDocument document = new WordDocument(inputFileStream, FormatType.Docx))
88
{
99
//Retrieve the last section of the document.

0 commit comments

Comments
 (0)