FixedLayoutEditOptionsBase

Inheritance: java.lang.Object

All Implemented Interfaces: com.groupdocs.editor.options.IEditOptions

public abstract class FixedLayoutEditOptionsBase implements IEditOptions

Base abstract class for the options for all documents of fixed-layout formats like PDF and XPS

Constructors

Constructor Description
FixedLayoutEditOptionsBase()

Methods

Method Description
getSkipImages() Gets or sets the flag indicating whether images must be skipped while converting input fixed-layout document to the resultant HTML.
setSkipImages(boolean value) Gets or sets the flag indicating whether images must be skipped while converting input fixed-layout document to the resultant HTML.
getPages() Allows to set a page range to process.
setPages(PageRange value) Allows to set a page range to process.
getEnablePagination() Allows to enable (true) or disable (false) pagination in the resultant HTML document.
setEnablePagination(boolean value) Allows to enable (true) or disable (false) pagination in the resultant HTML document.

FixedLayoutEditOptionsBase()

public FixedLayoutEditOptionsBase()

getSkipImages()

public final boolean getSkipImages()

Gets or sets the flag indicating whether images must be skipped while converting input fixed-layout document to the resultant HTML. Default is false - images are preserved.

Returns: boolean

setSkipImages(boolean value)

public final void setSkipImages(boolean value)

Gets or sets the flag indicating whether images must be skipped while converting input fixed-layout document to the resultant HTML. Default is false - images are preserved.

Parameters:

Parameter Type Description
value boolean

getPages()

public final PageRange getPages()

Allows to set a page range to process. By default all pages of a fixed-layout document are processed.

Returns: PageRange

setPages(PageRange value)

public final void setPages(PageRange value)

Allows to set a page range to process. By default all pages of a fixed-layout document are processed.

Parameters:

Parameter Type Description
value PageRange

getEnablePagination()

public final boolean getEnablePagination()

Allows to enable (true) or disable (false) pagination in the resultant HTML document. By default is disabled (false).


Fixed-layout format documents (PDF and XPS in particular) in their essence are strictly paged, their content has a fixed layout and divided onto pages. But resultant editable HTML can be represented in either pageless or paginal view.

Returns: boolean

setEnablePagination(boolean value)

public final void setEnablePagination(boolean value)

Allows to enable (true) or disable (false) pagination in the resultant HTML document. By default is disabled (false).


Fixed-layout format documents (PDF and XPS in particular) in their essence are strictly paged, their content has a fixed layout and divided onto pages. But resultant editable HTML can be represented in either pageless or paginal view.

Parameters:

Parameter Type Description
value boolean