Skip to content

Commit 4f8b6fe

Browse files
Merge pull request #111 from aspose-tasks/tasks-python-api-25.6.0-221244
Updated API for Aspose.Tasks for Python via .NET 25.6.0
2 parents 02559c3 + a711276 commit 4f8b6fe

File tree

13 files changed

+49
-11
lines changed

13 files changed

+49
-11
lines changed

english/python-net/aspose.tasks.saving/mppsaveoptions/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ The MPPSaveOptions type exposes the following members:
2525
|write_filters|Gets or sets a value indicating whether to write filter data when saving a project to MPP for format.|
2626
|write_groups|Gets or sets a value indicating whether to write groups data when saving a project to MPP for format.|
2727
|clear_vba|Gets or sets a value indicating whether to remove existing VBA macros data when saving a project to MPP format.|
28+
|write_vba|Gets or sets a value indicating whether to update existing VBA macros data in MPP file.<br/> Currently writing of VbaModule.SourceCode is supported.|
2829
|protection_password|Gets or sets a password which is used to protect a resulting MPP file. Currently is supported for MS Project 2010 and newer formats.|
2930

3031
### See Also

english/python-net/aspose.tasks/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,7 @@ Contains classes for work with Microsoft Project documents without utilizing Mic
226226
|[TimeUnitType](/tasks/python-net/aspose.tasks/timeunittype/)|Specifies the type of a time unit.|
227227
|[TimephasedDataType](/tasks/python-net/aspose.tasks/timephaseddatatype/)|Specifies the type of time phased data.|
228228
|[UndefinedConstraintHandlingBehavior](/tasks/python-net/aspose.tasks/undefinedconstrainthandlingbehavior/)|Specifies the behavior used to handle tasks with undefined constraints.|
229+
|[VbaModuleType](/tasks/python-net/aspose.tasks/vbamoduletype/)|Specifies the type of a module in a VBA project.|
229230
|[ViewScreen](/tasks/python-net/aspose.tasks/viewscreen/)|Specifies the screen type for a view.|
230231
|[WBSSequence](/tasks/python-net/aspose.tasks/wbssequence/)|Specifies sequence for WBSCodeMask|
231232
|[WeekLabelDisplay](/tasks/python-net/aspose.tasks/weeklabeldisplay/)|Specifies how the week label displays.|

english/python-net/aspose.tasks/ivbamodule/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The IVbaModule type exposes the following members:
1717
| :- | :- |
1818
|attributes|Gets a collection of [VbaModuleAttributeCollection](/tasks/python-net/aspose.tasks/vbamoduleattributecollection/)|
1919
|name|Gets a name of the VBA module|
20-
|source_code|Gets a source Code of the VBA module|
20+
|source_code|Gets a source code of the VBA module|
2121

2222
### See Also
2323

english/python-net/aspose.tasks/vbamodule/_index.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,15 @@ The VbaModule type exposes the following members:
1515
## Properties
1616
| Name | Description |
1717
| :- | :- |
18-
|attributes|Gets a collection of [VbaModuleAttributeCollection](/tasks/python-net/aspose.tasks/vbamoduleattributecollection/)|
18+
|attributes|Gets a collection of the module's attributes.|
1919
|name|Gets a name of the VBA module|
20-
|source_code|Gets a source Code of the VBA module|
20+
|type|Gets the type of the module.|
21+
|source_code|Gets or sets a source code of the VBA module|
22+
## Methods
23+
| Name | Description |
24+
| :- | :- |
25+
|create_procedural_module(name)|Creates an instance of [VbaModule](/tasks/python-net/aspose.tasks/vbamodule/) with VbaModuleType.ProceduralModule type.|
26+
|create_class_module(name)|Creates an instance of [VbaModule](/tasks/python-net/aspose.tasks/vbamodule/) with VbaModuleType.ClassModule type.|
2127

2228
### See Also
2329

english/python-net/aspose.tasks/vbamodulecollection/_index.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,14 @@ url: /python-net/aspose.tasks/vbamodulecollection/
1212
Represents a collection of [VbaModule](/tasks/python-net/aspose.tasks/vbamodule/) objects.
1313

1414
The VbaModuleCollection type exposes the following members:
15+
## Indexer
16+
| Name | Description |
17+
| :- | :- |
18+
|[index]|Gets the module at the specified index.|
1519
## Methods
1620
| Name | Description |
1721
| :- | :- |
18-
|to_list()| |
22+
|to_list()|Converts the collection object to a list of [VbaModule](/tasks/python-net/aspose.tasks/vbamodule/) objects.|
1923

2024
### See Also
2125

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
title: VbaModuleType
3+
second_title: Aspose.Tasks for Python via .NET API Reference
4+
description:
5+
type: docs
6+
weight: 2820
7+
url: /python-net/aspose.tasks/vbamoduletype/
8+
---
9+
10+
## VbaModuleType enumeration
11+
12+
Specifies the type of a module in a VBA project.
13+
14+
## Members
15+
| Member name | Description |
16+
| :- | :- |
17+
|DOCUMENT_MODULE|A type of VBA project item that specifies a module for embedded macros and programmatic access operations that are associated with a document.|
18+
|PROCEDURAL_MODULE|A module containing collection of subroutines and functions.|
19+
|CLASS_MODULE|A module that contains the definition for a new object. Each instance of a class creates a new object, and procedures that are defined in the module become properties and methods of the object.|
20+
|DESIGNER_MODULE|A module that extends the methods and properties of an ActiveX control that has been registered with the project.|
21+
22+
### See Also
23+
24+
* namespace [aspose.tasks](/tasks/python-net/aspose.tasks/)
25+
* assembly [Aspose.Tasks](/tasks/python-net/)
26+

english/python-net/aspose.tasks/viewscreen/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: ViewScreen
33
second_title: Aspose.Tasks for Python via .NET API Reference
44
description:
55
type: docs
6-
weight: 2820
6+
weight: 2830
77
url: /python-net/aspose.tasks/viewscreen/
88
---
99

english/python-net/aspose.tasks/wbssequence/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: WBSSequence
33
second_title: Aspose.Tasks for Python via .NET API Reference
44
description:
55
type: docs
6-
weight: 2830
6+
weight: 2840
77
url: /python-net/aspose.tasks/wbssequence/
88
---
99

english/python-net/aspose.tasks/weekdaytype/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: WeekdayType
33
second_title: Aspose.Tasks for Python via .NET API Reference
44
description:
55
type: docs
6-
weight: 2850
6+
weight: 2860
77
url: /python-net/aspose.tasks/weekdaytype/
88
---
99

english/python-net/aspose.tasks/weeklabeldisplay/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: WeekLabelDisplay
33
second_title: Aspose.Tasks for Python via .NET API Reference
44
description:
55
type: docs
6-
weight: 2840
6+
weight: 2850
77
url: /python-net/aspose.tasks/weeklabeldisplay/
88
---
99

0 commit comments

Comments
 (0)