Class XlsxOptions
- java.lang.Object
-
- com.aspose.tasks.SimpleSaveOptions
-
- com.aspose.tasks.XlsxOptions
-
public class XlsxOptions extends SimpleSaveOptions
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).ProjectViewgetView()Gets a list of the view columns (GanttChartColumn) to save to XLSX format.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).voidsetView(ProjectView value)Sets a list of the view columns (GanttChartColumn) to save to XLSX format.-
Methods inherited from class com.aspose.tasks.SimpleSaveOptions
getSaveFormat, getTasksComparer, getTasksFilter, setTasksComparer, setTasksFilter
-
-
-
-
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
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).
-
getView
public final ProjectView getView()
Gets a list of the view columns (
GanttChartColumn) to save to XLSX format. If not set then default columns are saved.- Returns:
- a list of the view columns (
GanttChartColumn) to save to XLSX format.
-
setView
public final void setView(ProjectView value)
Sets a list of the view columns (
GanttChartColumn) to save to XLSX format. If not set then default columns are saved.- Parameters:
value- a list of the view columns (GanttChartColumn) to save to XLSX format.
-
-