IPageRangedConvertOptions
All Implemented Interfaces: com.groupdocs.conversion.options.convert.IConvertOptions
public interface IPageRangedConvertOptions extends IConvertOptions
Represents convert options that support conversion of specific list of pages
Methods
Method | Description |
---|---|
getPages() | Gets The list of page indexes to be converted. |
setPages(List |
Sets the list of page indexes to be converted. |
getPages()
public abstract List<Integer> getPages()
Gets The list of page indexes to be converted. Should be specified to convert specific pages.
Returns: java.util.List<java.lang.Integer> - The list of page indexes to be converted. Should be specified to convert specific pages.
setPages(List pages)
public abstract void setPages(List<Integer> pages)
Sets the list of page indexes to be converted. Should be specified to convert specific pages.
Parameters:
Parameter | Type | Description |
---|---|---|
pages | java.util.List<java.lang.Integer> | The list of page indexes to be converted. Should be specified to convert specific pages. |