- Demo
- C# source
- VB.Net source
The sample demonstrates how to edit a Word document.
private void button1_Click(object sender, EventArgs e) { //Create word document Document document = new Document(); document.LoadFromFile(@"..\..\..\..\..\..\Data\Editing.doc"); //Get a paragraph Paragraph paragraph = document.Sections[0].AddParagraph(); //Append Text paragraph.AppendText("Editing sample"); //Save doc file. document.SaveToFile("Sample.doc", FileFormat.Doc); //Launching the MS Word file. WordDocViewer("Sample.doc"); } private void WordDocViewer(string fileName) { try { System.Diagnostics.Process.Start(fileName); } catch { } }
Private Sub button1_Click(ByVal sender As Object, ByVal e As EventArgs) Handles button1.Click 'Create word document Dim document_Renamed As New Document() document_Renamed.LoadFromFile("..\..\..\..\..\..\Data\Editing.doc") 'Get a paragraph Dim paragraph_Renamed As Paragraph = document_Renamed.Sections(0).AddParagraph() 'Append Text paragraph_Renamed.AppendText("Editing sample") 'Save doc file. document_Renamed.SaveToFile("Sample.doc", FileFormat.Doc) 'Launching the MS Word file. WordDocViewer("Sample.doc") End Sub Private Sub WordDocViewer(ByVal fileName As String) Try Process.Start(fileName) Catch End Try End Sub