Package com.aspose.tasks
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 theXlsxOptions
class that can be used to save project in XLSX format.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ProjectView
getAssignmentView()
Gets a list of the assignments view columns to render (AssignmentViewColumn
).Charset
getEncoding()
Gets the encoding of the resulting XLSX file.ProjectView
getResourceView()
Gets a list of the resource view columns to render (ResourceViewColumn
).void
setAssignmentView(ProjectView value)
Sets a list of the assignments view columns to render (AssignmentViewColumn
).void
setEncoding(Charset value)
Sets the encoding of the resulting XLSX file.void
setResourceView(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
XlsxOptions
class 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
StandardCharsets.UTF_8
.- 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
StandardCharsets.UTF_8
.- 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
).
-
-