Desktop Products:

Process Automation:

Software Development:

 
PDF-naar-Word-converter Klanten
 
Ontvang onze nieuwsbrief
 
 

Solid Framework Code Sample

This is a concise sample to help get Solid Framework up and running. It has been tested with the Free Developer License for Solid Framework using different versions of Microsoft's Visual Studio.

Read and Modify Document Information in PDF files

From the SolidFramework.Pdf.PdfDocument object that you’ve Opened you can access the info object.

Steps for using the Info object

  1. Import the trial Developer License:


    License.Import(new StreamReader(@"C:\Users\Joe\license.xml"));

  2. Locate the PDF files to using OpenFileDialog:


    OpenFileDialog OpFile = new OpenFileDialog();
    //show only PDF Files
    OpFile.Filter = "PDF Files (*.pdf)|*.pdf";

    if (OpFile.ShowDialog() == System.Windows.Forms.DialogResult.OK)
    {
    ...

  3. Create a new PDFDocument objec:


    PdfDocument document = new PdfDocument();

  4. Add the file the user selected to the new PDFDocument:


    document.Path = OpFile.FileName;

  5. Open the document in Solid Framework:


    document.Open();

  6. Assign some document information values:


    document.Info.Author = "Sample Guru";
    document.Info.Subject = "My sample PDF";
    ...

  7. If the document has been modified, save it:


    if (document.IsModified)
    {
      document.Save(SolidFramework.Plumbing.OverwriteMode.ForceOverwrite);
    }
    ...

 


Sitemap
©2000-2013 Solid Documents Limited - Alle rechten voorbehouden