Skip to content

Commit 5cc49dc

Browse files
committed
Aspose.Slides for Java 25.4 API references
1 parent d84916b commit 5cc49dc

File tree

74 files changed

+629
-270
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+629
-270
lines changed

content/java/english/com.aspose.slides/_index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,6 +513,7 @@ url: /com.aspose.slides/
513513
| [SequenceCollection](../com.aspose.slides/sequencecollection) | Represents collection of interactive sequences. |
514514
| [SetEffect](../com.aspose.slides/seteffect) | Represents a set effect for an animation behavior. |
515515
| [Shape](../com.aspose.slides/shape) | Represents a shape on a slide. |
516+
| [ShapeAdjustmentType](../com.aspose.slides/shapeadjustmenttype) | Specifies different types of shape adjustment values. |
516517
| [ShapeBevel](../com.aspose.slides/shapebevel) | Contains the properties of shape's main face relief. |
517518
| [ShapeCollection](../com.aspose.slides/shapecollection) | Represents a collection of a shapes. |
518519
| [ShapeElement](../com.aspose.slides/shapeelement) | Represents a part of shape with same outline and fill properties. |
@@ -870,7 +871,7 @@ url: /com.aspose.slides/
870871
| [IHyperlinkContainer](../com.aspose.slides/ihyperlinkcontainer) | Represents hyperlink object. |
871872
| [IHyperlinkManager](../com.aspose.slides/ihyperlinkmanager) | Provide hyperlinks management (adding, removing). |
872873
| [IHyperlinkQueries](../com.aspose.slides/ihyperlinkqueries) | Provide easy access to contained hyperlinks. |
873-
| [IImage](../com.aspose.slides/iimage) | Represents the raster or vector image. |
874+
| [IImage](../com.aspose.slides/iimage) | Represents a raster or vector image. |
874875
| [IImageCollection](../com.aspose.slides/iimagecollection) | Represents collection of PPImage. |
875876
| [IImageTransformOCollectionEffectiveData](../com.aspose.slides/iimagetransformocollectioneffectivedata) | Immutable object that represents a readonly collection of effective image transform effects. |
876877
| [IImageTransformOperation](../com.aspose.slides/iimagetransformoperation) | Represents abstract image transformation effect. |

content/java/english/com.aspose.slides/adjustvalue/_index.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Represents a geometry shape's adjustment value. These values affect shape's form
2424
| [getAngleValue()](#getAngleValue--) | Returns or sets value, interpreting it as angle in degrees. |
2525
| [setAngleValue(float value)](#setAngleValue-float-) | Returns or sets value, interpreting it as angle in degrees. |
2626
| [getName()](#getName--) | Returns a name of this adjustment value. |
27+
| [getType()](#getType--) | Returns the type of the shape adjustment. |
2728
### getRawValue() {#getRawValue--}
2829
```
2930
public final long getRawValue()
@@ -80,3 +81,13 @@ Returns a name of this adjustment value. Read-only String.
8081

8182
**Returns:**
8283
java.lang.String
84+
### getType() {#getType--}
85+
```
86+
public final int getType()
87+
```
88+
89+
90+
Returns the type of the shape adjustment. Read-only [ShapeAdjustmentType](../../com.aspose.slides/shapeadjustmenttype).
91+
92+
**Returns:**
93+
int

content/java/english/com.aspose.slides/audio/_index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ Represents an embedded audio file.
1919

2020
| Method | Description |
2121
| --- | --- |
22-
| [getContentType()](#getContentType--) | Returns a MIME type of an audio, encoded in (\#getBinaryData.getBinaryData). |
23-
| [setContentType(String value)](#setContentType-java.lang.String-) | Returns a MIME type of an audio, encoded in (\#getBinaryData.getBinaryData). |
22+
| [getContentType()](#getContentType--) | Returns a MIME type of an audio, encoded in ([.getBinaryData](../../null/\#getBinaryData)). |
23+
| [setContentType(String value)](#setContentType-java.lang.String-) | Returns a MIME type of an audio, encoded in ([.getBinaryData](../../null/\#getBinaryData)). |
2424
| [getBinaryData()](#getBinaryData--) | Returns the copy of an audio's data. |
2525
| [getStream()](#getStream--) | Returns Stream stream for reading. |
2626
### getContentType() {#getContentType--}
@@ -29,7 +29,7 @@ public final String getContentType()
2929
```
3030

3131

32-
Returns a MIME type of an audio, encoded in (\#getBinaryData.getBinaryData). Read-only String.
32+
Returns a MIME type of an audio, encoded in ([.getBinaryData](../../null/\#getBinaryData)). Read-only String.
3333

3434
**Returns:**
3535
java.lang.String
@@ -39,7 +39,7 @@ public final void setContentType(String value)
3939
```
4040

4141

42-
Returns a MIME type of an audio, encoded in (\#getBinaryData.getBinaryData). Read-only String.
42+
Returns a MIME type of an audio, encoded in ([.getBinaryData](../../null/\#getBinaryData)). Read-only String.
4343

4444
**Parameters:**
4545
| Parameter | Type | Description |
@@ -52,7 +52,7 @@ public final byte[] getBinaryData()
5252
```
5353

5454

55-
Returns the copy of an audio's data. In case of large amount of data consider using of \#getStream.getStream method to prevent unnecessary loading of audio's data into memory or even OutOfMemoryException. Read-only byte[].
55+
Returns the copy of an audio's data. In case of large amount of data consider using of [.getStream](../../null/\#getStream) method to prevent unnecessary loading of audio's data into memory or even OutOfMemoryException. Read-only byte[].
5656

5757
**Returns:**
5858
byte[]

content/java/english/com.aspose.slides/behaviorproperty/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ Represent property types for animation behavior. Follows the list of properties
143143
| [getExtrusionRotationCenterZ()](#getExtrusionRotationCenterZ--) | Represents 'extrusion.rotationcenter.z' property |
144144
| [getExtrusionColorMode()](#getExtrusionColorMode--) | Represents 'extrusion.colormode' property |
145145
| [equals(Object obj)](#equals-java.lang.Object-) | Checks if this object is equal to another. |
146-
| [hashCode()](#hashCode--) | Calculates and returns hach code based on the (\#getValue.getValue) property |
146+
| [hashCode()](#hashCode--) | Calculates and returns hach code based on the ([.getValue](../../null/\#getValue)) property |
147147
| [getOrCreateByValue(String propertyValue)](#getOrCreateByValue-java.lang.String-) | Looks for existing behavior property by value or creates new custom one with the specified value |
148148
### getValue() {#getValue--}
149149
```
@@ -1396,7 +1396,7 @@ public int hashCode()
13961396
```
13971397

13981398

1399-
Calculates and returns hach code based on the (\#getValue.getValue) property
1399+
Calculates and returns hach code based on the ([.getValue](../../null/\#getValue)) property
14001400

14011401
**Returns:**
14021402
int - Returns hash code for this object

content/java/english/com.aspose.slides/blobmanagementoptions/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Defines the maximum amount (in bytes) that all BLOBs in total may occupy in memo
127127

128128
--------------------
129129

130-
This property will be ignored if IsTemporaryFilesAllowed (\#isTemporaryFilesAllowed.isTemporaryFilesAllowed/\#setTemporaryFilesAllowed(boolean).setTemporaryFilesAllowed(boolean)) is set to false. It makes no sense to limit the maximum BLOBs in memory, because if IsTemporaryFilesAllowed (\#isTemporaryFilesAllowed.isTemporaryFilesAllowed/\#setTemporaryFilesAllowed(boolean).setTemporaryFilesAllowed(boolean)) is set to false, the memory is the only place where BLOBs can be stored.
130+
This property will be ignored if IsTemporaryFilesAllowed ([.isTemporaryFilesAllowed](../../null/\#isTemporaryFilesAllowed)/[.setTemporaryFilesAllowed(boolean)](../../null/\#setTemporaryFilesAllowed-boolean-)) is set to false. It makes no sense to limit the maximum BLOBs in memory, because if IsTemporaryFilesAllowed ([.isTemporaryFilesAllowed](../../null/\#isTemporaryFilesAllowed)/[.setTemporaryFilesAllowed(boolean)](../../null/\#setTemporaryFilesAllowed-boolean-)) is set to false, the memory is the only place where BLOBs can be stored.
131131

132132
--------------------
133133

@@ -145,7 +145,7 @@ Defines the maximum amount (in bytes) that all BLOBs in total may occupy in memo
145145

146146
--------------------
147147

148-
This property will be ignored if IsTemporaryFilesAllowed (\#isTemporaryFilesAllowed.isTemporaryFilesAllowed/\#setTemporaryFilesAllowed(boolean).setTemporaryFilesAllowed(boolean)) is set to false. It makes no sense to limit the maximum BLOBs in memory, because if IsTemporaryFilesAllowed (\#isTemporaryFilesAllowed.isTemporaryFilesAllowed/\#setTemporaryFilesAllowed(boolean).setTemporaryFilesAllowed(boolean)) is set to false, the memory is the only place where BLOBs can be stored.
148+
This property will be ignored if IsTemporaryFilesAllowed ([.isTemporaryFilesAllowed](../../null/\#isTemporaryFilesAllowed)/[.setTemporaryFilesAllowed(boolean)](../../null/\#setTemporaryFilesAllowed-boolean-)) is set to false. It makes no sense to limit the maximum BLOBs in memory, because if IsTemporaryFilesAllowed ([.isTemporaryFilesAllowed](../../null/\#isTemporaryFilesAllowed)/[.setTemporaryFilesAllowed(boolean)](../../null/\#setTemporaryFilesAllowed-boolean-)) is set to false, the memory is the only place where BLOBs can be stored.
149149

150150
--------------------
151151

content/java/english/com.aspose.slides/captions/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Represents the WebVTT closed captions.
2323
| [getLabel()](#getLabel--) | Returns or sets the label of the closed captions. |
2424
| [setLabel(String value)](#setLabel-java.lang.String-) | Returns or sets the label of the closed captions. |
2525
| [getBinaryData()](#getBinaryData--) | Returns the binary data of the closed captions. |
26-
| [getDataAsString()](#getDataAsString--) | Returns the closed captions data as UTF-8 string Read-only String. |
26+
| [getDataAsString()](#getDataAsString--) | Returns the closed captions data as UTF-8 encoded string Read-only String. |
2727
### getCaptionId() {#getCaptionId--}
2828
```
2929
public final UUID getCaptionId()
@@ -73,7 +73,7 @@ public final String getDataAsString()
7373
```
7474

7575

76-
Returns the closed captions data as UTF-8 string Read-only String.
76+
Returns the closed captions data as UTF-8 encoded string Read-only String.
7777

7878
**Returns:**
7979
java.lang.String

content/java/english/com.aspose.slides/captionscollection/_index.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ Represents a collection of the closed captions.
1919

2020
| Method | Description |
2121
| --- | --- |
22-
| [get_Item(int index)](#get-Item-int-) | Returns the closed captions by index. |
23-
| [add(String label, String filePath)](#add-java.lang.String-java.lang.String-) | Adds WebVTT closed captions at the end of the collection. |
24-
| [add(String label, InputStream stream)](#add-java.lang.String-java.io.InputStream-) | Adds WebVTT closed captions at the end of the collection. |
25-
| [remove(ICaptions captions)](#remove-com.aspose.slides.ICaptions-) | Removes the closed captions from the collection. |
22+
| [get_Item(int index)](#get-Item-int-) | Returns the closed captions at the specified index. |
23+
| [add(String label, String filePath)](#add-java.lang.String-java.lang.String-) | Adds WebVTT closed captions to the end of the collection. |
24+
| [add(String label, InputStream stream)](#add-java.lang.String-java.io.InputStream-) | Adds WebVTT closed captions to the end of the collection from a stream. |
25+
| [remove(ICaptions captions)](#remove-com.aspose.slides.ICaptions-) | Removes the specified closed captions from the collection. |
2626
| [removeAt(int index)](#removeAt-int-) | Removes the closed captions at the specified index. |
27-
| [clear()](#clear--) | Removes all elements from the collection. |
27+
| [clear()](#clear--) | Removes all closed captions from the collection. |
2828
| [getCount()](#getCount--) | Returns the number of elements in the collection. |
2929
| [iterator()](#iterator--) | Returns an enumerator that iterates through the collection. |
3030
### get_Item(int index) {#get-Item-int-}
@@ -33,7 +33,7 @@ public final ICaptions get_Item(int index)
3333
```
3434

3535

36-
Returns the closed captions by index. Read-only [ICaptions](../../com.aspose.slides/icaptions).
36+
Returns the closed captions at the specified index. Read-only [ICaptions](../../com.aspose.slides/icaptions).
3737

3838
**Parameters:**
3939
| Parameter | Type | Description |
@@ -48,44 +48,44 @@ public final ICaptions add(String label, String filePath)
4848
```
4949

5050

51-
Adds WebVTT closed captions at the end of the collection.
51+
Adds WebVTT closed captions to the end of the collection.
5252

5353
**Parameters:**
5454
| Parameter | Type | Description |
5555
| --- | --- | --- |
56-
| label | java.lang.String | Label of the closed captions. |
57-
| filePath | java.lang.String | Path to the file in WebVTT format. |
56+
| label | java.lang.String | The label of the closed captions. |
57+
| filePath | java.lang.String | The path to the WebVTT file. |
5858

5959
**Returns:**
60-
[ICaptions](../../com.aspose.slides/icaptions)
60+
[ICaptions](../../com.aspose.slides/icaptions) - The added [ICaptions](../../com.aspose.slides/icaptions) instance.
6161
### add(String label, InputStream stream) {#add-java.lang.String-java.io.InputStream-}
6262
```
6363
public final ICaptions add(String label, InputStream stream)
6464
```
6565

6666

67-
Adds WebVTT closed captions at the end of the collection.
67+
Adds WebVTT closed captions to the end of the collection from a stream.
6868

6969
**Parameters:**
7070
| Parameter | Type | Description |
7171
| --- | --- | --- |
72-
| label | java.lang.String | Label of the closed captions. |
73-
| stream | java.io.InputStream | Input stream with data in WebVTT format. |
72+
| label | java.lang.String | The label of the closed captions. |
73+
| stream | java.io.InputStream | The input stream containing data in WebVTT format. |
7474

7575
**Returns:**
76-
[ICaptions](../../com.aspose.slides/icaptions)
76+
[ICaptions](../../com.aspose.slides/icaptions) - The added [ICaptions](../../com.aspose.slides/icaptions) instance.
7777
### remove(ICaptions captions) {#remove-com.aspose.slides.ICaptions-}
7878
```
7979
public final void remove(ICaptions captions)
8080
```
8181

8282

83-
Removes the closed captions from the collection.
83+
Removes the specified closed captions from the collection.
8484

8585
**Parameters:**
8686
| Parameter | Type | Description |
8787
| --- | --- | --- |
88-
| captions | [ICaptions](../../com.aspose.slides/icaptions) | Captions object that should be deleted. |
88+
| captions | [ICaptions](../../com.aspose.slides/icaptions) | The closed captions to remove. |
8989

9090
### removeAt(int index) {#removeAt-int-}
9191
```
@@ -98,15 +98,15 @@ Removes the closed captions at the specified index.
9898
**Parameters:**
9999
| Parameter | Type | Description |
100100
| --- | --- | --- |
101-
| index | int | Index of the closed captions that should be deleted. |
101+
| index | int | The index of the closed captions to remove. |
102102

103103
### clear() {#clear--}
104104
```
105105
public final void clear()
106106
```
107107

108108

109-
Removes all elements from the collection.
109+
Removes all closed captions from the collection.
110110

111111
### getCount() {#getCount--}
112112
```

0 commit comments

Comments
 (0)