IacDocument.PrintPageIndex Method

 

This method can also be accessed by querying the document object for an IacPrint interface and calling the IacPrint.PrintPageIndex method.

 

The PrintPage and PrintPageIndex methods print the specified page. These methods are called for every page to be printed.

 

Syntax

Visual Basic .NET:

Public Overrides Function PrintPageIndex(pageIndex As Integer) As Boolean

C#:

public override bool PrintPageIndex(int pageIndex)

 

Parameters

pageIndex

Page Index of the document to print (page index = page number - 1 and starting from 0).

 

Return Value

Returns True on success, False otherwise.

 

Remarks

Member of Amyuni.PDFCreator.IacDocument.

 

 

Example

Public Sub Sample()

    ' Constants for Activation codes

    Const strLicenseTo As String = "Amyuni PDF Creator .NET Evaluation"

    Const strActivationCode As String = "07EFCDAB0100010025C3B7B351579FF94C49112EAF7368612744C7237C2F6A215A53E83A9ECCFFE54C52063CB05338BDE555773D7B1B"

 

    ' Initialize library

    ' This should be done once

    acPDFCreatorLib.Initialize()

 

    ' set license key This is needed only with licensed version

    acPDFCreatorLib.SetLicenseKey(strLicenseTo, strActivationCode)

 

    ' Create new stream object

    Dim fileRead As System.IO.Stream = System.IO.File.OpenRead("C:\temp\PDFDocument.pdf")

 

    ' Create a new PDF document

    Dim doc As New Amyuni.PDFCreator.IacDocument()

 

    ' Open stream

    Dim Password As String = ""

    doc.Open(fileRead, Password)

 

    ' Start printing to the default printer the document

    doc.StartPrint("", False)

 

    ' Printing each page

    For i = 1 To doc.PageCount

        doc.PrintPageIndex(i-1)

    Next

 

    ' End printing

    doc.EndPrint()

 

    ' Close the stream

    fileRead.Close()

 

    ' terminate library to free resources

    acPDFCreatorLib.Terminate()

 

    ' destroy objects

    doc.Dispose()

End Sub

public void Sample()

{

    // Constants for Activation codes

    const string strLicenseTo = "Amyuni PDF Creator .NET Evaluation";

    const string strActivationCode = "07EFCDAB0100010025C3B7B351579FF94C49112EAF7368612744C7237C2F6A215A53E83A9ECCFFE54C52063CB05338BDE555773D7B1B";

 

    // Initialize library

    // This should be done once

    acPDFCreatorLib.Initialize();

 

    // set license key This is needed only with licensed version

    acPDFCreatorLib.SetLicenseKey(strLicenseTo, strActivationCode);

 

    // Create new stream object

    System.IO.FileStream fileRead = new System.IO.FileStream(@"C:\temp\PDFDocument.pdf",

    System.IO.FileMode.Open,

    System.IO.FileAccess.Read,

    System.IO.FileShare.Read);

 

    // Create a new PDF document

    Amyuni.PDFCreator.IacDocument doc = new Amyuni.PDFCreator.IacDocument();

 

    // Open stream

    String password = "";

    doc.Open(fileRead, password);

 

    // Start printing to the default printer the document

    doc.StartPrint("", false);

 

    // Printing each page

    for(int i=1; i<=doc.PageCount; i++){

        doc.PrintPageIndex(i-1);

    }

 

    // End printing

    doc.EndPrint();

 

    // Close the stream

    fileRead.Close();

 

    // terminate library to free resources

    acPDFCreatorLib.Terminate();

 

    // destroy objects

    doc.Dispose();

}