Skip to content

Commit 4ac5eb2

Browse files
Merge pull request #121 from aspose-tasks/tasks-java-api-25-8
Tasks java api 25 8
2 parents eee8626 + c6137a9 commit 4ac5eb2

File tree

4 files changed

+36
-36
lines changed

4 files changed

+36
-36
lines changed

english/java/com.aspose.tasks/calendar/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Calendars are used to define standard working and non-working times. Projects mu
8484
| [isBaselineCalendar()](#isBaselineCalendar--) | Gets a value indicating whether the calendar is a baseline calendar. |
8585
| [isDayWorking(Date dt)](#isDayWorking-java.util.Date-) | Determines whether the specified day is a working day according to the calendar. |
8686
| [isEmpty()](#isEmpty--) | Returns whether the calendar doesn't have working hours defined. |
87-
| [make24HourCalendar(Calendar calendar)](#make24HourCalendar-com.aspose.tasks.Calendar-) | Makes a given Calendar to be a 24Hour Calendar. 24Hours Calendar is a Calendar in which every day of week is working with Round-the-clock working hours. |
87+
| [make24HourCalendar(Calendar calendar)](#make24HourCalendar-com.aspose.tasks.Calendar-) | Makes a given Calendar to be a 24Hour Calendar. |
8888
| [makeNightShiftCalendar(Calendar calendar)](#makeNightShiftCalendar-com.aspose.tasks.Calendar-) | Makes a given Calendar as Night Shift Calendar. |
8989
| [makeStandardCalendar(Calendar calendar)](#makeStandardCalendar-com.aspose.tasks.Calendar-) | Creates default standard calendar. |
9090
| [setBaseCalendar(Calendar value)](#setBaseCalendar-com.aspose.tasks.Calendar-) | Sets the base calendar on which this calendar depends. |

english/java/com.aspose.tasks/outlinemask/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ Represents four elements of a mask which defines an outline code format.
2323

2424
| Method | Description |
2525
| --- | --- |
26-
| [getLength()](#getLength--) | Gets the maximum length (in characters) of the outline code values. 0 if length is not defined. |
26+
| [getLength()](#getLength--) | Gets the maximum length (in characters) of the outline code values. |
2727
| [getLevel()](#getLevel--) | Gets the level of a mask. |
2828
| [getSeparator()](#getSeparator--) | Gets the separator of code values. |
2929
| [getType()](#getType--) | Gets the type of a mask. |
30-
| [setLength(int value)](#setLength-int-) | Sets the maximum length (in characters) of the outline code values. 0 if length is not defined. |
30+
| [setLength(int value)](#setLength-int-) | Sets the maximum length (in characters) of the outline code values. |
3131
| [setLevel(int value)](#setLevel-int-) | Sets the level of a mask. |
3232
| [setSeparator(String value)](#setSeparator-java.lang.String-) | Sets the separator of code values. |
3333
| [setType(int value)](#setType-int-) | Sets the type of a mask. |

english/java/com.aspose.tasks/pagesize/_index.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -18,53 +18,53 @@ Specifies page size.
1818

1919
| Field | Description |
2020
| --- | --- |
21-
| [A0](#A0) | The size of the A0 page in points is 3371 ? 2384 |
22-
| [A1](#A1) | The size of the A1 page in points is 2384 ? 1685 |
23-
| [A2](#A2) | The size of the A2 page in points is 1684 ? 1190 |
24-
| [A3](#A3) | The size of the A3 page in points is 1190 ? 842 |
25-
| [A4](#A4) | The size of the A4 page in points is 842 ? 595 |
21+
| [A0](#A0) | The size of the A0 page in points is 3371 × 2384 |
22+
| [A1](#A1) | The size of the A1 page in points is 2384 × 1685 |
23+
| [A2](#A2) | The size of the A2 page in points is 1684 × 1190 |
24+
| [A3](#A3) | The size of the A3 page in points is 1190 × 842 |
25+
| [A4](#A4) | The size of the A4 page in points is 842 × 595 |
2626
| [DefinedInView](#DefinedInView) | Use page size defined in View's [PageSettings](../../com.aspose.tasks/pagesettings) (View.PageInfo.PageSettings). |
27-
| [Ledger](#Ledger) | The size of the Ledger page in points is 1224 ? 792 |
28-
| [Letter](#Letter) | The size of the Letter page in points is 792 ? 612 |
27+
| [Ledger](#Ledger) | The size of the Ledger page in points is 1224 × 792 |
28+
| [Letter](#Letter) | The size of the Letter page in points is 792 × 612 |
2929
### A0 {#A0}
3030
```
3131
public static final int A0
3232
```
3333

3434

35-
The size of the A0 page in points is 3371 ? 2384
35+
The size of the A0 page in points is 3371 × 2384
3636

3737
### A1 {#A1}
3838
```
3939
public static final int A1
4040
```
4141

4242

43-
The size of the A1 page in points is 2384 ? 1685
43+
The size of the A1 page in points is 2384 × 1685
4444

4545
### A2 {#A2}
4646
```
4747
public static final int A2
4848
```
4949

5050

51-
The size of the A2 page in points is 1684 ? 1190
51+
The size of the A2 page in points is 1684 × 1190
5252

5353
### A3 {#A3}
5454
```
5555
public static final int A3
5656
```
5757

5858

59-
The size of the A3 page in points is 1190 ? 842
59+
The size of the A3 page in points is 1190 × 842
6060

6161
### A4 {#A4}
6262
```
6363
public static final int A4
6464
```
6565

6666

67-
The size of the A4 page in points is 842 ? 595
67+
The size of the A4 page in points is 842 × 595
6868

6969
### DefinedInView {#DefinedInView}
7070
```
@@ -80,13 +80,13 @@ public static final int Ledger
8080
```
8181

8282

83-
The size of the Ledger page in points is 1224 ? 792
83+
The size of the Ledger page in points is 1224 × 792
8484

8585
### Letter {#Letter}
8686
```
8787
public static final int Letter
8888
```
8989

9090

91-
The size of the Letter page in points is 792 ? 612
91+
The size of the Letter page in points is 792 × 612
9292

english/java/com.aspose.tasks/printerpapersize/_index.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -26,26 +26,26 @@ Specifies the paper size which is used for printing.
2626
| [PaperA5](#PaperA5) | Indicates A5 printer paper size (148 mm by 210 mm). |
2727
| [PaperB4](#PaperB4) | Indicates B4 printer paper size (250 mm by 353 mm). |
2828
| [PaperB5](#PaperB5) | Indicates B5 printer paper size (176 mm by 250 mm). |
29-
| [PaperCSheet](#PaperCSheet) | Indicates C paper printer paper size (17 in. by 22 in.). |
30-
| [PaperDSheet](#PaperDSheet) | Indicates D paper printer paper size (22 in. by 34 in.). |
31-
| [PaperESheet](#PaperESheet) | Indicates E paper printer paper size (34 in. by 44 in.). |
32-
| [PaperEnvelope10](#PaperEnvelope10) | Indicates Envelope10 printer paper size (4.125 in. by 9.5 in.). |
33-
| [PaperEnvelopeMonarch](#PaperEnvelopeMonarch) | Indicates Envelope Monarch printer paper size (3.875 in. by 7.5 in.). |
34-
| [PaperExecutive](#PaperExecutive) | Indicates Envelope executive printer paper size (7.25 in. by 10.5 in.). |
35-
| [PaperFolio](#PaperFolio) | Indicates Folio printer paper size (8.5 in. by 13 in.). |
36-
| [PaperLedger](#PaperLedger) | Indicates Ledger printer paper size (17 in. by 11 in.). |
37-
| [PaperLegal](#PaperLegal) | Indicates Envelope legal printer paper size (8.5 in. by 14 in.). |
38-
| [PaperLetter](#PaperLetter) | Indicates Envelope Letter printer paper size (8.5 in. by 11 in.). |
39-
| [PaperLetterSmall](#PaperLetterSmall) | Indicates Small Letter printer paper size (8.5 in. by 11 in.). |
40-
| [PaperNote](#PaperNote) | Indicates Note printer paper size (8.5 in. by 11 in.). |
29+
| [PaperCSheet](#PaperCSheet) | Indicates C paper printer paper size (17 in. |
30+
| [PaperDSheet](#PaperDSheet) | Indicates D paper printer paper size (22 in. |
31+
| [PaperESheet](#PaperESheet) | Indicates E paper printer paper size (34 in. |
32+
| [PaperEnvelope10](#PaperEnvelope10) | Indicates Envelope10 printer paper size (4.125 in. |
33+
| [PaperEnvelopeMonarch](#PaperEnvelopeMonarch) | Indicates Envelope Monarch printer paper size (3.875 in. |
34+
| [PaperExecutive](#PaperExecutive) | Indicates Envelope executive printer paper size (7.25 in. |
35+
| [PaperFolio](#PaperFolio) | Indicates Folio printer paper size (8.5 in. |
36+
| [PaperLedger](#PaperLedger) | Indicates Ledger printer paper size (17 in. |
37+
| [PaperLegal](#PaperLegal) | Indicates Envelope legal printer paper size (8.5 in. |
38+
| [PaperLetter](#PaperLetter) | Indicates Envelope Letter printer paper size (8.5 in. |
39+
| [PaperLetterSmall](#PaperLetterSmall) | Indicates Small Letter printer paper size (8.5 in. |
40+
| [PaperNote](#PaperNote) | Indicates Note printer paper size (8.5 in. |
4141
| [PaperQuarto](#PaperQuarto) | Indicates Quarto printer paper size (215 mm by 275 mm). |
42-
| [PaperStandard10x11](#PaperStandard10x11) | Indicates Standard printer paper size (10 in. by 11 in.). |
43-
| [PaperStandard10x14](#PaperStandard10x14) | Indicates Standard printer paper size (10 in. by 14 in.). |
44-
| [PaperStandard11x17](#PaperStandard11x17) | Indicates Standard printer paper size (11 in. by 17 in.). |
45-
| [PaperStandard15x11](#PaperStandard15x11) | Indicates Standard printer paper size (15 in. by 11 in.). |
46-
| [PaperStandard9x11](#PaperStandard9x11) | Indicates Standard printer paper size (9 in. by 11 in.). |
47-
| [PaperStatement](#PaperStatement) | Indicates Statement printer paper size (5.5 in. by 8.5 in.). |
48-
| [PaperTabloid](#PaperTabloid) | Indicates Tabloid printer paper size (11 in. by 17 in.). |
42+
| [PaperStandard10x11](#PaperStandard10x11) | Indicates Standard printer paper size (10 in. |
43+
| [PaperStandard10x14](#PaperStandard10x14) | Indicates Standard printer paper size (10 in. |
44+
| [PaperStandard11x17](#PaperStandard11x17) | Indicates Standard printer paper size (11 in. |
45+
| [PaperStandard15x11](#PaperStandard15x11) | Indicates Standard printer paper size (15 in. |
46+
| [PaperStandard9x11](#PaperStandard9x11) | Indicates Standard printer paper size (9 in. |
47+
| [PaperStatement](#PaperStatement) | Indicates Statement printer paper size (5.5 in. |
48+
| [PaperTabloid](#PaperTabloid) | Indicates Tabloid printer paper size (11 in. |
4949
### Custom {#Custom}
5050
```
5151
public static final int Custom

0 commit comments

Comments
 (0)