Advertisement
Shokedbrain

doc

Dec 6th, 2021
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.97 KB | None | 0 0
  1. Spire.License.LicenseProvider.SetLicenseFileName("license.elic.xml");
  2.             Spire.License.LicenseProvider.LoadLicense();
  3.             Document doc = new Document();
  4.             Section section = doc.AddSection();
  5.             Paragraph Para = section.AddParagraph();
  6.             Para.AppendText("Spire.Doc for .NET, a professional .NET Word component, "
  7.                             + "enables developers to perform a large range of tasks on Word document(from Version Word97-2003 to Word 2010) "
  8.                             + "for .NET in C# and VB.NET."
  9.                             + "This libray is specially designed for .NET developers to help them"
  10.                             + "to create any WinForm and ASP.NET Web applications to create, open, write, edit, save and convert"
  11.                             + "Word document without Microsoft Office and any other third-party tools installed on system.");
  12.             doc.SaveToFile("OperateWord.docx", FileFormat.Docx);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement