IPageInfo
public interface IPageInfo
Interface for the page description properties.
Methods
Method | Description |
---|---|
getDocument() | Gets the document info. |
setDocument(DocumentInfo value) | Gets the document info. |
getNumber() | Gets the page number. |
getVisible() | Indicates whether page is visibile or not. |
getWidth() | Gets page width in pixels when converted to image. |
getHeight() | Gets page height in pixels when converted to image. |
getDocument()
public abstract DocumentInfo getDocument()
Gets the document info.
Returns: DocumentInfo
setDocument(DocumentInfo value)
public abstract void setDocument(DocumentInfo value)
Gets the document info.
Parameters:
Parameter | Type | Description |
---|---|---|
value | DocumentInfo |
getNumber()
public abstract int getNumber()
Gets the page number.
Returns: int
getVisible()
public abstract boolean getVisible()
Indicates whether page is visibile or not.
Returns: boolean
getWidth()
public abstract int getWidth()
Gets page width in pixels when converted to image.
Returns: int
getHeight()
public abstract int getHeight()
Gets page height in pixels when converted to image.
Returns: int