PrintedPdfDocument Class

Definition

This class is a helper for creating a PDF file for given print attributes.

[Android.Runtime.Register("android/print/pdf/PrintedPdfDocument", DoNotGenerateAcw=true)]
public class PrintedPdfDocument : Android.Graphics.Pdf.PdfDocument
[<Android.Runtime.Register("android/print/pdf/PrintedPdfDocument", DoNotGenerateAcw=true)>]
type PrintedPdfDocument = class
    inherit PdfDocument
Inheritance
PrintedPdfDocument
Attributes

Remarks

This class is a helper for creating a PDF file for given print attributes. It is useful for implementing printing via the native Android graphics APIs.

This class computes the page width, page height, and content rectangle from the provided print attributes and these precomputed values can be accessed via #getPageWidth(), #getPageHeight(), and #getPageContentRect(), respectively. The #startPage(int) methods creates pages whose android.graphics.pdf.PdfDocument.PageInfo PageInfo is initialized with the precomputed values for width, height, and content rectangle.

A typical use of the APIs looks like this:

// open a new document
            PrintedPdfDocument document = new PrintedPdfDocument(context,
                    printAttributes);

            // start a page
            Page page = document.startPage(0);

            // draw something on the page
            View content = getContentView();
            content.draw(page.getCanvas());

            // finish the page
            document.finishPage(page);
            . . .
            // add more pages
            . . .
            // write the document content
            document.writeTo(getOutputStream());

            //close the document
            document.close();

Java documentation for android.print.pdf.PrintedPdfDocument.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Constructors

PrintedPdfDocument(Context, PrintAttributes)

Creates a new document.

PrintedPdfDocument(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

Properties

Class

Returns the runtime class of this Object.

(Inherited from Object)
Handle

The handle to the underlying Android instance.

(Inherited from Object)
JniIdentityHashCode (Inherited from Object)
JniPeerMembers
PageContentRect

Gets the content rectangle.

PageHeight

Gets the page height.

Pages

Gets the pages of the document.

(Inherited from PdfDocument)
PageWidth

Gets the page width.

PeerReference (Inherited from Object)
ThresholdClass

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

ThresholdType

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

Methods

Clone()

Creates and returns a copy of this object.

(Inherited from Object)
Close()

Closes this document.

(Inherited from PdfDocument)
Dispose() (Inherited from Object)
Dispose(Boolean) (Inherited from Object)
Equals(Object)

Indicates whether some other object is "equal to" this one.

(Inherited from Object)
FinishPage(PdfDocument+Page)

Finishes a started page.

(Inherited from PdfDocument)
GetHashCode()

Returns a hash code value for the object.

(Inherited from Object)
JavaFinalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

(Inherited from Object)
Notify()

Wakes up a single thread that is waiting on this object's monitor.

(Inherited from Object)
NotifyAll()

Wakes up all threads that are waiting on this object's monitor.

(Inherited from Object)
SetHandle(IntPtr, JniHandleOwnership)

Sets the Handle property.

(Inherited from Object)
StartPage(Int32)

Starts a new page.

StartPage(PdfDocument+PageInfo)

Starts a page using the provided PageInfo.

(Inherited from PdfDocument)
ToArray<T>() (Inherited from Object)
ToString()

Returns a string representation of the object.

(Inherited from Object)
UnregisterFromRuntime() (Inherited from Object)
Wait()

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>.

(Inherited from Object)
Wait(Int64)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)
Wait(Int64, Int32)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)
WriteTo(Stream)

Writes the document to an output stream.

(Inherited from PdfDocument)
WriteToAsync(Stream) (Inherited from PdfDocument)

Explicit Interface Implementations

IJavaPeerable.Disposed() (Inherited from Object)
IJavaPeerable.DisposeUnlessReferenced() (Inherited from Object)
IJavaPeerable.Finalized() (Inherited from Object)
IJavaPeerable.JniManagedPeerState (Inherited from Object)
IJavaPeerable.SetJniIdentityHashCode(Int32) (Inherited from Object)
IJavaPeerable.SetJniManagedPeerState(JniManagedPeerStates) (Inherited from Object)
IJavaPeerable.SetPeerReference(JniObjectReference) (Inherited from Object)

Extension Methods

JavaCast<TResult>(IJavaObject)

Performs an Android runtime-checked type conversion.

JavaCast<TResult>(IJavaObject)
GetJniTypeName(IJavaPeerable)

Applies to