C# Word - Document Processing in C#.NET
Provide a Series of Methods to Setup Document Properties and Modify Document Content for Users
Overview
C#.NET Word document processing Interface control (XDoc.Word).//More TODO allow users to create and process a new document by using our API.
add image to pdf using itextsharp vb.net,
vb.net itextsharp add image to pdf,
open pdf in word c#,
pdf compress in c#,
how to add footer in pdf using itextsharp in c#,
c# code 39.
Related .net document control helps:
c# asp.net pdf editor: EdgePDF: ASP.NET PDF Editor Web Control: Online view, annotate, redact, edit, process, convert PDF documents
c# asp.net mvc document viewer: ASP.NET Document Viewer using C#: Open, View, Annotate, Redact, Convert document files in ASP.NET using C#, HTML5, JQuer...
c# asp.net tiff viewer: ASP.NET Tiff Viewer: view, annotate multipage Tiff images in ASP.NET MVC, WebForms using C# Control
c# asp.net mvc document viewer: ASP.NET MVC Document Viewer: view, annotate, redact files on ASP.NET MVC web projects
asp.net sharepoint document viewer open source: ASP.NET SharePoint Document Viewer: view, annotate, redact documents in SharePoint
asp.net annotate pdf using c#:
ASP.NET Annotate PDF Control: annotate, comment, markup PDF document online using ASP.NET C#
c# asp.net dicom viewer: ASP.NET Dicom Document Viewer Control: view, annotate dicom imaging files online in ASP.NET
C# DLLs: Word Document Processing
Add references:
itextsharp convert pdf to text c#,
create pdf with images c#,
convert pdf to text vb.net,
vb.net pdf print library,
c# draw rectangle on existing pdf,
vb.net pdf to jpg,
c# pdf add background.
RasterEdge.Imaging.Basic.dll
RasterEdge.XDoc.Office.Inner.Common.dll
RasterEdge.Imaging.Drawing.dll
RasterEdge.Imaging.Processing.dll
RasterEdge.XDoc.Office.Inner.Office03.dll
RasterEdge.Imaging.Font.dll
RasterEdge.XDoc.Word.dll
RasterEdge.XImage.Raster.Core.dll
RasterEdge.XImage.Raster.dll
Use corresponding namespaces;
using RasterEdge.Imaging.Basic;
using RasterEdge.XDoc.Word;
Get All Images from Word Document
Sometimes we want to extract all images from Word document or Specific page, .XDoc.Word provides a method for users to achieve this requirement.
asp.net preview pdf,
how to display pdf file in asp.net c#,
asp.net display tiff images,
asp net add text to pdf,
open word file in asp.net c#,
how to edit pdf file in asp.net c#,
pdf viewer in asp.net core mvc.
If you happen to have this request, you may use this demo code to get all images from document as follow.
String docFilePath = @"";
//Open the document
DOCXDocument document = DOCXDocument.Open(docFilePath);
//Get the main ducument
IDocument doc = document.GetDocument();
//Document clone
IDocument doc0 = doc.Clone();
//Get all picture in document
List<Bitmap> bitmaps = doc0.GetAllPicture();
|
Create, Add, Delete or Modify Section in Word Document
We know that there're more than or equals to one section in document, if you want to get some of them or create a new section in Word document, you can use specific APIs to achieve it. The following demo code just shows you how to create a section in document. If you need more operation, you can try it yourself by using our SDK.
String docFilePath = @"";
//Open the document
DOCXDocument document = DOCXDocument.Open(docFilePath);
//Get the main ducument
IDocument doc = document.GetDocument();
//Document clone
IDocument doc0 = doc.Clone();
//Create a section for document
ISection section = doc0.CreateSection(0);
//Save the document
doc0.Save(@"");
|
Create, Add, Delete or Modify Paragraph and Table in Word Document
If you want to create, add, delete or modify some paragraphs or tables in Word document, you can use specific APIs to achieve it. The following demo code just show you how to create an empty paragraph and a table with 3 columns and 3 rows in Word document. If you need to do more operations, you can try it yourself by using our SDK.
String docFilePath = @"";
//Open the document
DOCXDocument document = DOCXDocument.Open(docFilePath);
//Get the main ducument
IDocument doc = document.GetDocument();
//Document clone
IDocument doc0 = doc.Clone();
//Create a table and a paragraph for document
ITable table = doc0.CreateTable(3, 3);
IParagraph paragraph = doc0.CreateParagraph();
//Save the document
doc0.Save(@"");
|