Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ public final GraphicalIndicatorsInfo getGraphicalIndicator()
```


Gets a graphical indicators info associated with the extended attribute.
Gets a graphical indicators info associated with the extended attribute. Applicable to MPP format.

**Returns:**
[GraphicalIndicatorsInfo](../../com.aspose.tasks/graphicalindicatorsinfo) - a graphical indicators info associated with the extended attribute.
Expand Down Expand Up @@ -1010,7 +1010,7 @@ public final void setGraphicalIndicator(GraphicalIndicatorsInfo value)
```


Sets a graphical indicators info associated with the extended attribute.
Sets a graphical indicators info associated with the extended attribute. Applicable to MPP format.

**Parameters:**
| Parameter | Type | Description |
Expand Down
25 changes: 25 additions & 0 deletions english/java/com.aspose.tasks/group/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,15 @@ Represents a group definition. A Group object is a member of the ResourceGroups

| Method | Description |
| --- | --- |
| [getGroupAssignments()](#getGroupAssignments--) | Gets a value indicating whether assignments should be grouped instead of tasks. |
| [getGroupCriteria()](#getGroupCriteria--) | Gets a GroupCriteria collection representing the fields in a group definition. |
| [getIndex()](#getIndex--) | Gets the index of a [Group](../../com.aspose.tasks/group) object in the Groups containing object. |
| [getMaintainHierarchy()](#getMaintainHierarchy--) | Gets a value indicating whether to show all the levels of summary tasks for subtasks within group. |
| [getName()](#getName--) | Gets a name of a Group object. |
| [getShowInMenu()](#getShowInMenu--) | Gets a value indicating whether Project shows the group name in the Group drop-down list in the Ribbon. |
| [getShowSummary()](#getShowSummary--) | Gets a value indicating whether summary rows are displayed for the group. |
| [getUid()](#getUid--) | Gets a unique identifier of a group. |
| [setGroupAssignments(boolean value)](#setGroupAssignments-boolean-) | Sets a value indicating whether assignments should be grouped instead of tasks. |
| [setGroupCriteria(GroupCriterionCollection value)](#setGroupCriteria-com.aspose.tasks.GroupCriterionCollection-) | Sets a GroupCriteria collection representing the fields in a group definition. |
| [setMaintainHierarchy(boolean value)](#setMaintainHierarchy-boolean-) | Sets a value indicating whether to show all the levels of summary tasks for subtasks within group. |
| [setName(String value)](#setName-java.lang.String-) | Sets a name of a Group object. |
Expand All @@ -43,6 +45,16 @@ public Group()

Initializes a new instance of the [Group](../../com.aspose.tasks/group) class.

### getGroupAssignments() {#getGroupAssignments--}
```
public final boolean getGroupAssignments()
```


Gets a value indicating whether assignments should be grouped instead of tasks.

**Returns:**
boolean - a value indicating whether assignments should be grouped instead of tasks.
### getGroupCriteria() {#getGroupCriteria--}
```
public final GroupCriterionCollection getGroupCriteria()
Expand Down Expand Up @@ -113,6 +125,19 @@ Gets a unique identifier of a group.

**Returns:**
int - a unique identifier of a group.
### setGroupAssignments(boolean value) {#setGroupAssignments-boolean-}
```
public final void setGroupAssignments(boolean value)
```


Sets a value indicating whether assignments should be grouped instead of tasks.

**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | boolean | a value indicating whether assignments should be grouped instead of tasks. |

### setGroupCriteria(GroupCriterionCollection value) {#setGroupCriteria-com.aspose.tasks.GroupCriterionCollection-}
```
public final void setGroupCriteria(GroupCriterionCollection value)
Expand Down
82 changes: 70 additions & 12 deletions english/java/com.aspose.tasks/mppsaveoptions/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,18 @@ Allows to specify additional options when saving project data to MPP.

| Method | Description |
| --- | --- |
| [getClearVba()](#getClearVba--) | Gets a value indicating whether to remove existing VBA macros data when saving a project to MPP format. |
| [getProtectionPassword()](#getProtectionPassword--) | Gets a password which is used to protect a resulting MPP file. |
| [getRemoveInvalidAssignments()](#getRemoveInvalidAssignments--) | Gets a value indicating whether to remove invalid resource assignments when saving to MPP. |
| [getWriteFilters()](#getWriteFilters--) | Gets a value indicating whether to write filter data when saving to MPP. |
| [getWriteViewData()](#getWriteViewData--) | Gets a value indicating whether to write view data when saving to MPP. |
| [getWriteFilters()](#getWriteFilters--) | Gets a value indicating whether to write filter data when saving a project to MPP for format. |
| [getWriteGroups()](#getWriteGroups--) | Gets a value indicating whether to write groups data when saving a project to MPP for format. |
| [getWriteViewData()](#getWriteViewData--) | Gets a value indicating whether to write view data when saving a project to MPP format. |
| [setClearVba(boolean value)](#setClearVba-boolean-) | Sets a value indicating whether to remove existing VBA macros data when saving a project to MPP format. |
| [setProtectionPassword(String value)](#setProtectionPassword-java.lang.String-) | Sets a password which is used to protect a resulting MPP file. |
| [setRemoveInvalidAssignments(boolean value)](#setRemoveInvalidAssignments-boolean-) | Sets a value indicating whether to remove invalid resource assignments when saving to MPP. |
| [setWriteFilters(boolean value)](#setWriteFilters-boolean-) | Sets a value indicating whether to write filter data when saving to MPP. |
| [setWriteViewData(boolean value)](#setWriteViewData-boolean-) | Sets a value indicating whether to write view data when saving to MPP. |
| [setWriteFilters(boolean value)](#setWriteFilters-boolean-) | Sets a value indicating whether to write filter data when saving a project to MPP for format. |
| [setWriteGroups(boolean value)](#setWriteGroups-boolean-) | Sets a value indicating whether to write groups data when saving a project to MPP for format. |
| [setWriteViewData(boolean value)](#setWriteViewData-boolean-) | Sets a value indicating whether to write view data when saving a project to MPP format. |
### MPPSaveOptions() {#MPPSaveOptions--}
```
public MPPSaveOptions()
Expand All @@ -39,6 +43,16 @@ public MPPSaveOptions()

Initializes a new instance of the [MPPSaveOptions](../../com.aspose.tasks/mppsaveoptions) class.

### getClearVba() {#getClearVba--}
```
public final boolean getClearVba()
```


Gets a value indicating whether to remove existing VBA macros data when saving a project to MPP format.

**Returns:**
boolean - a value indicating whether to remove existing VBA macros data when saving a project to MPP format.
### getProtectionPassword() {#getProtectionPassword--}
```
public final String getProtectionPassword()
Expand Down Expand Up @@ -73,7 +87,7 @@ public final boolean getWriteFilters()
```


Gets a value indicating whether to write filter data when saving to MPP.
Gets a value indicating whether to write filter data when saving a project to MPP for format.

--------------------

Expand All @@ -84,21 +98,48 @@ Filter data includes Project.TaskFilters and Project.ResourceFilters collections
Currently supported for MSP 2010 or newer formats.

**Returns:**
boolean - a value indicating whether to write filter data when saving to MPP.
boolean - a value indicating whether to write filter data when saving a project to MPP for format.
### getWriteGroups() {#getWriteGroups--}
```
public final boolean getWriteGroups()
```


Gets a value indicating whether to write groups data when saving a project to MPP for format.

--------------------

Group data includes Project.TaskGroups and Project.ResourceGroups collections.

**Returns:**
boolean - a value indicating whether to write groups data when saving a project to MPP for format.
### getWriteViewData() {#getWriteViewData--}
```
public final boolean getWriteViewData()
```


Gets a value indicating whether to write view data when saving to MPP.
Gets a value indicating whether to write view data when saving a project to MPP format.

--------------------

View data includes Project.Views, Filters and Tables collections.

**Returns:**
boolean - a value indicating whether to write view data when saving to MPP.
boolean - a value indicating whether to write view data when saving a project to MPP format.
### setClearVba(boolean value) {#setClearVba-boolean-}
```
public final void setClearVba(boolean value)
```


Sets a value indicating whether to remove existing VBA macros data when saving a project to MPP format.

**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | boolean | a value indicating whether to remove existing VBA macros data when saving a project to MPP format. |

### setProtectionPassword(String value) {#setProtectionPassword-java.lang.String-}
```
public final void setProtectionPassword(String value)
Expand Down Expand Up @@ -139,7 +180,7 @@ public final void setWriteFilters(boolean value)
```


Sets a value indicating whether to write filter data when saving to MPP.
Sets a value indicating whether to write filter data when saving a project to MPP for format.

--------------------

Expand All @@ -152,15 +193,32 @@ Currently supported for MSP 2010 or newer formats.
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | boolean | a value indicating whether to write filter data when saving to MPP. |
| value | boolean | a value indicating whether to write filter data when saving a project to MPP for format. |

### setWriteGroups(boolean value) {#setWriteGroups-boolean-}
```
public final void setWriteGroups(boolean value)
```


Sets a value indicating whether to write groups data when saving a project to MPP for format.

--------------------

Group data includes Project.TaskGroups and Project.ResourceGroups collections.

**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | boolean | a value indicating whether to write groups data when saving a project to MPP for format. |

### setWriteViewData(boolean value) {#setWriteViewData-boolean-}
```
public final void setWriteViewData(boolean value)
```


Sets a value indicating whether to write view data when saving to MPP.
Sets a value indicating whether to write view data when saving a project to MPP format.

--------------------

Expand All @@ -169,5 +227,5 @@ View data includes Project.Views, Filters and Tables collections.
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | boolean | a value indicating whether to write view data when saving to MPP. |
| value | boolean | a value indicating whether to write view data when saving a project to MPP format. |

20 changes: 14 additions & 6 deletions english/java/com.aspose.tasks/saveoptions/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ An instance of any derived class from SaveOptions class is passed to the stream
| [getRenderToSinglePage()](#getRenderToSinglePage--) | Gets a value indicating whether a project should be rendered to a single page when project is saved in graphical format. |
| [getRollUpGanttBars()](#getRollUpGanttBars--) | Gets a value indicating whether subtasks on the summary task bar should be marked. |
| [getStartDate()](#getStartDate--) | Gets the date to start rendering from. |
| [getTextStyles()](#getTextStyles--) | Gets the list of the instances of the [TextStyle](../../com.aspose.tasks/textstyle) class that appear in project view. |
| [getTextStyles()](#getTextStyles--) | Gets the list of text styles that applied during rendering of a project view. |
| [getTimescale()](#getTimescale--) | Gets the `Timescale`([getTimescale()](../../com.aspose.tasks/saveoptions\#getTimescale--)/[setTimescale(int)](../../com.aspose.tasks/saveoptions\#setTimescale-int-)) value which is used to control how timescale (if present) is rendered when project is saved to graphical format. |
| [getUseGradientBrush()](#getUseGradientBrush--) | Gets a value indicating whether gradient brush should be used when rendering Gantt Chart. |
| [getView()](#getView--) | Gets a list of the view columns to render ([GanttChartColumn](../../com.aspose.tasks/ganttchartcolumn)). |
Expand All @@ -62,7 +62,7 @@ An instance of any derived class from SaveOptions class is passed to the stream
| [setRenderToSinglePage(boolean value)](#setRenderToSinglePage-boolean-) | Sets a value indicating whether a project should be rendered to a single page when project is saved in graphical format. |
| [setRollUpGanttBars(boolean value)](#setRollUpGanttBars-boolean-) | Sets a value indicating whether subtasks on the summary task bar should be marked. |
| [setStartDate(Date value)](#setStartDate-java.util.Date-) | Sets the date to start rendering from. |
| [setTextStyles(List<TextStyle> value)](#setTextStyles-java.util.List-com.aspose.tasks.TextStyle--) | Sets the list of the instances of the [TextStyle](../../com.aspose.tasks/textstyle) class that appear in project view. |
| [setTextStyles(List<TextStyle> value)](#setTextStyles-java.util.List-com.aspose.tasks.TextStyle--) | Sets the list of text styles that applied during rendering of a project view. |
| [setTimescale(int value)](#setTimescale-int-) | Sets the `Timescale`([getTimescale()](../../com.aspose.tasks/saveoptions\#getTimescale--)/[setTimescale(int)](../../com.aspose.tasks/saveoptions\#setTimescale-int-)) value which is used to control how timescale (if present) is rendered when project is saved to graphical format. |
| [setUseGradientBrush(boolean value)](#setUseGradientBrush-boolean-) | Sets a value indicating whether gradient brush should be used when rendering Gantt Chart. |
| [setView(ProjectView value)](#setView-com.aspose.tasks.ProjectView-) | Sets a list of the view columns to render ([GanttChartColumn](../../com.aspose.tasks/ganttchartcolumn)). |
Expand Down Expand Up @@ -247,10 +247,14 @@ public final List<TextStyle> getTextStyles()
```


Gets the list of the instances of the [TextStyle](../../com.aspose.tasks/textstyle) class that appear in project view.
Gets the list of text styles that applied during rendering of a project view.

--------------------

These styles override styles defined with GanttCharView.setTextStyles.

**Returns:**
java.util.List&lt;com.aspose.tasks.TextStyle&gt; - the list of the instances of the [TextStyle](../../com.aspose.tasks/textstyle) class that appear in project view.
java.util.List&lt;com.aspose.tasks.TextStyle&gt; - the list of text styles that applied during rendering of a project view.
### getTimescale() {#getTimescale--}
```
public final int getTimescale()
Expand Down Expand Up @@ -544,12 +548,16 @@ public final void setTextStyles(List<TextStyle> value)
```


Sets the list of the instances of the [TextStyle](../../com.aspose.tasks/textstyle) class that appear in project view.
Sets the list of text styles that applied during rendering of a project view.

--------------------

These styles override styles defined with GanttCharView.setTextStyles.

**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.util.List&lt;com.aspose.tasks.TextStyle&gt; | the list of the instances of the [TextStyle](../../com.aspose.tasks/textstyle) class that appear in project view. |
| value | java.util.List&lt;com.aspose.tasks.TextStyle&gt; | the list of text styles that applied during rendering of a project view. |

### setTimescale(int value) {#setTimescale-int-}
```
Expand Down
2 changes: 1 addition & 1 deletion english/java/com.aspose.tasks/tasklink/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ java.lang.Object
**All Implemented Interfaces:**
com.aspose.ms.System.IEquatable
```
public class TaskLink implements System.IEquatable<TaskLink>
public final class TaskLink implements System.IEquatable<TaskLink>
```

Represents a predecessor link.
Expand Down
2 changes: 1 addition & 1 deletion english/java/com.aspose.tasks/vbamoduleattribute/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ java.lang.Object
**All Implemented Interfaces:**
com.aspose.ms.System.IEquatable
```
public class VbaModuleAttribute implements System.IEquatable<VbaModuleAttribute>
public final class VbaModuleAttribute implements System.IEquatable<VbaModuleAttribute>
```

The attribute of the [VbaModule](../../com.aspose.tasks/vbamodule) object
Expand Down