Class PageViewSettings
- java.lang.Object
-
- com.aspose.tasks.PageViewSettings
-
public class PageViewSettings extends Object
Represents printing settings for a project view.
-
-
Constructor Summary
Constructors Constructor Description PageViewSettings()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getFirstColumnsCount()
Gets the number of first columns to be printed on all pages.boolean
getFitTimescaleToEndOfPage()
Gets a value indicating whether to fit timescale to the end of a page when printing.boolean
getPrintAllSheetColumns()
Gets a value indicating whether to print all sheet columns of a view.boolean
getPrintBlankPages()
Gets a value indicating whether to print blank pages of a view.boolean
getPrintFirstColumnsCountOnAllPages()
Gets a value indicating whether to print a specified number of first columns on all pages.boolean
getPrintNotes()
Gets a value indicating whether to print notes.void
setFirstColumnsCount(int value)
Sets the number of first columns to be printed on all pages.void
setFitTimescaleToEndOfPage(boolean value)
Sets a value indicating whether to fit timescale to the end of a page when printing.void
setPrintAllSheetColumns(boolean value)
Sets a value indicating whether to print all sheet columns of a view.void
setPrintBlankPages(boolean value)
Sets a value indicating whether to print blank pages of a view.void
setPrintFirstColumnsCountOnAllPages(boolean value)
Sets a value indicating whether to print a specified number of first columns on all pages.void
setPrintNotes(boolean value)
Sets a value indicating whether to print notes.
-
-
-
Method Detail
-
getFirstColumnsCount
public final int getFirstColumnsCount()
Gets the number of first columns to be printed on all pages.
- Returns:
- the number of first columns to be printed on all pages.
-
setFirstColumnsCount
public final void setFirstColumnsCount(int value)
Sets the number of first columns to be printed on all pages.
- Parameters:
value
- the number of first columns to be printed on all pages.
-
getFitTimescaleToEndOfPage
public final boolean getFitTimescaleToEndOfPage()
Gets a value indicating whether to fit timescale to the end of a page when printing.
- Returns:
- a value indicating whether to fit timescale to the end of a page when printing.
-
setFitTimescaleToEndOfPage
public final void setFitTimescaleToEndOfPage(boolean value)
Sets a value indicating whether to fit timescale to the end of a page when printing.
- Parameters:
value
- a value indicating whether to fit timescale to the end of a page when printing.
-
getPrintAllSheetColumns
public final boolean getPrintAllSheetColumns()
Gets a value indicating whether to print all sheet columns of a view.
- Returns:
- a value indicating whether to print all sheet columns of a view.
-
setPrintAllSheetColumns
public final void setPrintAllSheetColumns(boolean value)
Sets a value indicating whether to print all sheet columns of a view.
- Parameters:
value
- a value indicating whether to print all sheet columns of a view.
-
getPrintBlankPages
public final boolean getPrintBlankPages()
Gets a value indicating whether to print blank pages of a view.
- Returns:
- a value indicating whether to print blank pages of a view.
-
setPrintBlankPages
public final void setPrintBlankPages(boolean value)
Sets a value indicating whether to print blank pages of a view.
- Parameters:
value
- a value indicating whether to print blank pages of a view.
-
getPrintFirstColumnsCountOnAllPages
public final boolean getPrintFirstColumnsCountOnAllPages()
Gets a value indicating whether to print a specified number of first columns on all pages.
- Returns:
- a value indicating whether to print a specified number of first columns on all pages.
-
setPrintFirstColumnsCountOnAllPages
public final void setPrintFirstColumnsCountOnAllPages(boolean value)
Sets a value indicating whether to print a specified number of first columns on all pages.
- Parameters:
value
- a value indicating whether to print a specified number of first columns on all pages.
-
getPrintNotes
public final boolean getPrintNotes()
Gets a value indicating whether to print notes.
- Returns:
- a value indicating whether to print notes.
-
setPrintNotes
public final void setPrintNotes(boolean value)
Sets a value indicating whether to print notes.
- Parameters:
value
- a value indicating whether to print notes.
-
-