public class ViewInfoOptions extends BaseViewOptions
Provides options used for retrieving information about view.
Modifier and Type | Method and Description |
---|---|
static ViewInfoOptions |
forHtmlView()
Initializes new instance of
ViewInfoOptions class to retrieve information about view when rendering into HTML. |
static ViewInfoOptions |
forJpgView(boolean extractText)
Initializes new instance of
ViewInfoOptions class to retrieve information about view when rendering into JPG. |
static ViewInfoOptions |
forPngView(boolean extractText)
Initializes new instance of
ViewInfoOptions class to retrieve information about view when rendering into PNG. |
static ViewInfoOptions |
fromHtmlViewOptions(HtmlViewOptions options)
Initializes new instance of
ViewInfoOptions class based on HtmlViewOptions object. |
static ViewInfoOptions |
fromJpgViewOptions(JpgViewOptions options)
Initializes new instance of
ViewInfoOptions class based on JpgViewOptions object. |
static ViewInfoOptions |
fromPngViewOptions(PngViewOptions options)
Initializes new instance of
ViewInfoOptions class based on PngViewOptions object. |
boolean |
isExtractText()
Indicates that text extraction is enabled.
|
getArchiveOptions, getCadOptions, getDefaultFontName, getEmailOptions, getLotusNotesOptions, getOutlookOptions, getPdfOptions, getProjectManagementOptions, getSpreadsheetOptions, getWordProcessingOptions, isForHtmlView, isRenderComments, isRenderHiddenPages, isRenderNotes, setArchiveOptions, setCadOptions, setDefaultFontName, setEmailOptions, setForHtmlView, setLotusNotesOptions, setOutlookOptions, setPdfOptions, setProjectManagementOptions, setRenderComments, setRenderHiddenPages, setRenderNotes, setSpreadsheetOptions, setWordProcessingOptions
public static ViewInfoOptions forHtmlView()
Initializes new instance of ViewInfoOptions
class to retrieve information about view when rendering into HTML.
ViewInfoOptions
class.public static ViewInfoOptions forJpgView(boolean extractText)
Initializes new instance of ViewInfoOptions
class to retrieve information about view when rendering into JPG.
extractText
- Enables text extraction.ViewInfoOptions
class.public static ViewInfoOptions forPngView(boolean extractText)
Initializes new instance of ViewInfoOptions
class to retrieve information about view when rendering into PNG.
extractText
- Enables text extraction.ViewInfoOptions
class.public static ViewInfoOptions fromHtmlViewOptions(HtmlViewOptions options)
Initializes new instance of ViewInfoOptions
class based on HtmlViewOptions
object.
options
- The HTML view options.ViewInfoOptions
class.IllegalArgumentException
- Thrown when options
is null.public static ViewInfoOptions fromJpgViewOptions(JpgViewOptions options)
Initializes new instance of ViewInfoOptions
class based on JpgViewOptions
object.
options
- The JPG view options.ViewInfoOptions
class.IllegalArgumentException
- Thrown when options
is null.public static ViewInfoOptions fromPngViewOptions(PngViewOptions options)
Initializes new instance of ViewInfoOptions
class based on PngViewOptions
object.
options
- The PNG view options.ViewInfoOptions
class.IllegalArgumentException
- Thrown when options
is null.public final boolean isExtractText()
Indicates that text extraction is enabled.