PdfViewInfo
All Implemented Interfaces: com.groupdocs.viewer.results.ViewInfo
public interface PdfViewInfo extends ViewInfo
Represents view information for a PDF document.
The PdfViewInfo interface defines the contract for accessing and manipulating view information for a PDF document in the GroupDocs.Viewer component. It provides methods to retrieve information such as allowing printing, and other properties.
Example usage:
try (Viewer viewer = new Viewer("document.pdf")) {
final PdfViewInfo viewInfo = (PdfViewInfo) viewer.getViewInfo(ViewInfoOptions.forPngView());
// Use the viewInfo object for further operations
}
Note: The default implementation of this interface is PdfViewInfoImpl.
Methods
Method | Description |
---|---|
isPrintingAllowed() | Checks if printing of the document is allowed. |
setPrintingAllowed(boolean allowPrinting) | Sets whether printing of the document is allowed. |
isPrintingAllowed()
public abstract boolean isPrintingAllowed()
Checks if printing of the document is allowed.
Returns: boolean - true if printing is allowed, false otherwise.
setPrintingAllowed(boolean allowPrinting)
public abstract void setPrintingAllowed(boolean allowPrinting)
Sets whether printing of the document is allowed.
Parameters:
Parameter | Type | Description |
---|---|---|
allowPrinting | boolean | true to allow printing, false otherwise. |