Class XlsxOptions
- java.lang.Object
-
- com.aspose.tasks.SaveOptions
-
- com.aspose.tasks.XlsxOptions
-
public class XlsxOptions extends SaveOptions
Allows to specify additional options when rendering project pages to XLSX.
-
-
Constructor Summary
Constructors Constructor Description XlsxOptions()Initializes a new instance of theXlsxOptionsclass that can be used to save project in XLSX format.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ProjectViewgetAssignmentView()Gets a list of the assignments view columns to render (AssignmentViewColumn).CharsetgetEncoding()Gets the encoding of the resulting XLSX file.ProjectViewgetResourceView()Gets a list of the resource view columns to render (ResourceViewColumn).voidsetAssignmentView(ProjectView value)Sets a list of the assignments view columns to render (AssignmentViewColumn).voidsetEncoding(Charset value)Sets the encoding of the resulting XLSX file.voidsetResourceView(ProjectView value)Sets a list of the resource view columns to render (ResourceViewColumn).-
Methods inherited from class com.aspose.tasks.SaveOptions
getBarStyles, getCustomPageSize, getDrawNonWorkingTime, getEndDate, getFitContent, getGridlines, getLegendOnEachPage, getMarkCriticalTasks, getNonWorkingTimeColor, getPageCount, getPageSize, getPresentationFormat, getRenderToSinglePage, getRollUpGanttBars, getSaveFormat, getStartDate, getTasksComparer, getTasksFilter, getTextStyles, getTimescale, getUseGradientBrush, getView, getViewSettings, setBarStyles, setCustomPageSize, setDrawNonWorkingTime, setEndDate, setFitContent, setGridlines, setLegendOnEachPage, setMarkCriticalTasks, setNonWorkingTimeColor, setPageSize, setPresentationFormat, setRenderToSinglePage, setRollUpGanttBars, setStartDate, setTasksComparer, setTasksFilter, setTextStyles, setTimescale, setUseGradientBrush, setView, setViewSettings
-
-
-
-
Constructor Detail
-
XlsxOptions
public XlsxOptions()
Initializes a new instance of the
XlsxOptionsclass that can be used to save project in XLSX format.
-
-
Method Detail
-
getAssignmentView
public final ProjectView getAssignmentView()
Gets a list of the assignments view columns to render (
AssignmentViewColumn).- Returns:
- a list of the assignments view columns to render (
AssignmentViewColumn).
-
setAssignmentView
public final void setAssignmentView(ProjectView value)
Sets a list of the assignments view columns to render (
AssignmentViewColumn).- Parameters:
value- a list of the assignments view columns to render (AssignmentViewColumn).
-
getEncoding
public final Charset getEncoding()
Gets the encoding of the resulting XLSX file. The default value is
System.Text.Encoding.UTF8(java.nio.charset.Charset#getUTF8).- Returns:
- the encoding of the resulting XLSX file.
-
setEncoding
public final void setEncoding(Charset value)
Sets the encoding of the resulting XLSX file. The default value is
System.Text.Encoding.UTF8(java.nio.charset.Charset#getUTF8).- Parameters:
value- the encoding of the resulting XLSX file.
-
getResourceView
public final ProjectView getResourceView()
Gets a list of the resource view columns to render (
ResourceViewColumn).- Returns:
- a list of the resource view columns to render (
ResourceViewColumn).
-
setResourceView
public final void setResourceView(ProjectView value)
Sets a list of the resource view columns to render (
ResourceViewColumn).- Parameters:
value- a list of the resource view columns to render (ResourceViewColumn).
-
-