Skip to content

Commit a7bdf6b

Browse files
committed
Aspose.Slides for PHP 25.3 API references
1 parent c018423 commit a7bdf6b

File tree

88 files changed

+66386
-64914
lines changed

Some content is hidden

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

88 files changed

+66386
-64914
lines changed

content/php-java/english/aspose.slides/_index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@ description: Aspose.Slides are Microsoft PowerPoint management APIs that enables
7171
| [Camera](camera) | Represents Camera. |
7272
| [CameraPresetType](camerapresettype) | Constants which define camera preset type. |
7373
| [CannotCombine2DAnd3DChartsException](cannotcombine2dand3dchartsexception) | Exception which thrown when trying to combine 2D and 3D chart types. |
74+
| [Captions](captions) | Represents the WebVTT closed captions. |
75+
| [CaptionsCollection](captionscollection) | Represents a collection of the closed captions. |
7476
| [CategoryAxisType](categoryaxistype) | Represents a type of a category axis. |
7577
| [Cell](cell) | Represents a cell of a table. |
7678
| [CellCircularReferenceException](cellcircularreferenceexception) | The exception that is thrown when one or more circular references are detected where a formula refers to its own cell either directly or indirectly. |
@@ -248,6 +250,7 @@ description: Aspose.Slides are Microsoft PowerPoint management APIs that enables
248250
| [HSL](hsl) | Represents a Hue/Saturation/Luminance effect. The hue, saturation, and luminance may each be adjusted relative to its current value. |
249251
| [HandoutLayoutingOptions](handoutlayoutingoptions) | Represents the handout presentation layout mode for export. |
250252
| [HandoutType](handouttype) | Specifies how many slides and in what sequence will be placed on the page. |
253+
| [HeadingPair](headingpair) | Represents a 'Heading pair' property of the document. It indicates the group name of document parts and the number of parts in group. |
251254
| [Html5Options](html5options) | Represents a HTML5 exporting options. |
252255
| [HtmlExternalResolver](htmlexternalresolver) | Callback object used by HTML import routine to obtain referrenced objects such as images. Using this resolver could create a vulnurability when client provided HTML file will make server software to obtain local or network file. Use with caution. It is recommended not to specify HtmlExternalResolver at all (only embedded objects will be read) or create some subclass which checks if specified uri is valid. |
253256
| [HtmlFormatter](htmlformatter) | Represents HTML file template. |
@@ -269,6 +272,7 @@ description: Aspose.Slides are Microsoft PowerPoint management APIs that enables
269272
| [Images](images) | Methods to instantiate and work with IImage. |
270273
| [InOutTransition](inouttransition) | In-Out slide transition effect. |
271274
| [Ink](ink) | Represents an ink object on a slide. |
275+
| [InkActions](inkactions) | Represents the root of ink actions. |
272276
| [InkBrush](inkbrush) | Represents an inkBrush object. |
273277
| [InkOptions](inkoptions) | Provides options that control the look of Ink objects in exported document. |
274278
| [InkTrace](inktrace) | Represents an Trace object. A Trace element is used to record the data captured by the digitizer. It contains a sequence of points encoded according to the specification given by the InkTraceFormat object. |

content/php-java/english/aspose.slides/audioframe/_index.md

Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,32 @@ boolean
8989
---
9090

9191

92+
### getFadeInDuration {#getFadeInDuration}
93+
94+
| Name | Description |
95+
| --- | --- |
96+
| getFadeInDuration () | Specifies the time duration for the initial fade-in of the media in milliseconds. Read/write float. |
97+
98+
**Returns:**
99+
float
100+
101+
102+
---
103+
104+
105+
### getFadeOutDuration {#getFadeOutDuration}
106+
107+
| Name | Description |
108+
| --- | --- |
109+
| getFadeOutDuration () | Specifies the time duration for the ending fade-out of the media in milliseconds. Read/write float. |
110+
111+
**Returns:**
112+
float
113+
114+
115+
---
116+
117+
92118
### getHideAtShowing {#getHideAtShowing}
93119

94120
| Name | Description |
@@ -167,6 +193,32 @@ boolean
167193
---
168194

169195

196+
### getTrimFromEnd {#getTrimFromEnd}
197+
198+
| Name | Description |
199+
| --- | --- |
200+
| getTrimFromEnd () | Specifies the time duration to be removed from the end of the media during playback, in milliseconds. Read/write float. |
201+
202+
**Returns:**
203+
float
204+
205+
206+
---
207+
208+
209+
### getTrimFromStart {#getTrimFromStart}
210+
211+
| Name | Description |
212+
| --- | --- |
213+
| getTrimFromStart () | Specifies the time duration to be removed from the beginning of the media during playback, in milliseconds. Read/write float. |
214+
215+
**Returns:**
216+
float
217+
218+
219+
---
220+
221+
170222
### getVolume {#getVolume}
171223

172224
| Name | Description |
@@ -180,6 +232,19 @@ int
180232
---
181233

182234

235+
### getVolumeValue {#getVolumeValue}
236+
237+
| Name | Description |
238+
| --- | --- |
239+
| getVolumeValue () | Returns or sets the audio volume in percents. Read/write float. |
240+
241+
**Returns:**
242+
float
243+
244+
245+
---
246+
247+
183248
### setAudioCdEndTrack {#setAudioCdEndTrack}
184249

185250
| Name | Description |
@@ -245,6 +310,32 @@ void
245310
---
246311

247312

313+
### setFadeInDuration {#setFadeInDuration}
314+
315+
| Name | Description |
316+
| --- | --- |
317+
| setFadeInDuration (float) | Specifies the time duration for the initial fade-in of the media in milliseconds. Read/write float. |
318+
319+
**Returns:**
320+
void
321+
322+
323+
---
324+
325+
326+
### setFadeOutDuration {#setFadeOutDuration}
327+
328+
| Name | Description |
329+
| --- | --- |
330+
| setFadeOutDuration (float) | Specifies the time duration for the ending fade-out of the media in milliseconds. Read/write float. |
331+
332+
**Returns:**
333+
void
334+
335+
336+
---
337+
338+
248339
### setHideAtShowing {#setHideAtShowing}
249340

250341
| Name | Description |
@@ -323,6 +414,32 @@ void
323414
---
324415

325416

417+
### setTrimFromEnd {#setTrimFromEnd}
418+
419+
| Name | Description |
420+
| --- | --- |
421+
| setTrimFromEnd (float) | Specifies the time duration to be removed from the end of the media during playback, in milliseconds. Read/write float. |
422+
423+
**Returns:**
424+
void
425+
426+
427+
---
428+
429+
430+
### setTrimFromStart {#setTrimFromStart}
431+
432+
| Name | Description |
433+
| --- | --- |
434+
| setTrimFromStart (float) | Specifies the time duration to be removed from the beginning of the media during playback, in milliseconds. Read/write float. |
435+
436+
**Returns:**
437+
void
438+
439+
440+
---
441+
442+
326443
### setVolume {#setVolume}
327444

328445
| Name | Description |
@@ -336,3 +453,16 @@ void
336453
---
337454

338455

456+
### setVolumeValue {#setVolumeValue}
457+
458+
| Name | Description |
459+
| --- | --- |
460+
| setVolumeValue (float) | Returns or sets the audio volume in percents. Read/write float. |
461+
462+
**Returns:**
463+
void
464+
465+
466+
---
467+
468+

content/php-java/english/aspose.slides/basescript/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ url: /aspose.slides/basescript/
1818
| getBase () | Base argument |
1919

2020
**Returns:**
21-
[MathLeftSubSuperscriptElement](../mathleftsubsuperscriptelement), [MathMatrix](../mathmatrix), [MathLimit](../mathlimit), [MathBlock](../mathblock), [MathRadical](../mathradical), [MathArray](../matharray), [MathDelimiter](../mathdelimiter), [MathNaryOperator](../mathnaryoperator), [MathAccent](../mathaccent), [MathBorderBox](../mathborderbox), [MathGroupingCharacter](../mathgroupingcharacter), [MathBar](../mathbar), [MathFunction](../mathfunction), [MathSuperscriptElement](../mathsuperscriptelement), [MathSubscriptElement](../mathsubscriptelement), [BaseScript](../basescript), [MathematicalText](../mathematicaltext), [MathFraction](../mathfraction), [MathElementBase](../mathelementbase), [MathBox](../mathbox), [MathRightSubSuperscriptElement](../mathrightsubsuperscriptelement)
21+
[MathLeftSubSuperscriptElement](../mathleftsubsuperscriptelement), [MathMatrix](../mathmatrix), [MathLimit](../mathlimit), [MathBlock](../mathblock), [MathRadical](../mathradical), [MathArray](../matharray), [MathDelimiter](../mathdelimiter), [MathNaryOperator](../mathnaryoperator), [MathAccent](../mathaccent), [MathBorderBox](../mathborderbox), [MathGroupingCharacter](../mathgroupingcharacter), [MathBar](../mathbar), [MathFunction](../mathfunction), [MathSubscriptElement](../mathsubscriptelement), [MathSuperscriptElement](../mathsuperscriptelement), [MathFraction](../mathfraction), [MathematicalText](../mathematicaltext), [BaseScript](../basescript), [MathBox](../mathbox), [MathElementBase](../mathelementbase), [MathRightSubSuperscriptElement](../mathrightsubsuperscriptelement)
2222

2323

2424
---

content/php-java/english/aspose.slides/baseslide/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ boolean
170170
| altText | String | Alternative text. |
171171

172172
**Returns:**
173-
[Connector](../connector), [GraphicalObject](../graphicalobject), [SmartArtShape](../smartartshape), [Shape](../shape), [Table](../table), [Ink](../ink), [GeometryShape](../geometryshape), [SummaryZoomFrame](../summaryzoomframe), [SummaryZoomSection](../summaryzoomsection), [ZoomFrame](../zoomframe), [OleObjectFrame](../oleobjectframe), [VideoFrame](../videoframe), [SmartArt](../smartart), [GroupShape](../groupshape), [AutoShape](../autoshape), [PictureFrame](../pictureframe), [SectionZoomFrame](../sectionzoomframe), [AudioFrame](../audioframe), [Chart](../chart), [LegacyDiagram](../legacydiagram), [ZoomObject](../zoomobject)
173+
[GraphicalObject](../graphicalobject), [Connector](../connector), [SmartArtShape](../smartartshape), [Shape](../shape), [Table](../table), [Ink](../ink), [SummaryZoomFrame](../summaryzoomframe), [GeometryShape](../geometryshape), [ZoomFrame](../zoomframe), [SummaryZoomSection](../summaryzoomsection), [OleObjectFrame](../oleobjectframe), [VideoFrame](../videoframe), [SmartArt](../smartart), [GroupShape](../groupshape), [InkActions](../inkactions), [AutoShape](../autoshape), [PictureFrame](../pictureframe), [SectionZoomFrame](../sectionzoomframe), [Chart](../chart), [AudioFrame](../audioframe), [ZoomObject](../zoomobject), [LegacyDiagram](../legacydiagram)
174174

175175

176176
---

content/php-java/english/aspose.slides/buildversioninfo/_index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ url: /aspose.slides/buildversioninfo/
1616

1717
| Name | Value | Description |
1818
| --- | --- | --- |
19-
[ProductMinor](#ProductMinor) | 12 | Minor version number. |
20-
[ProductMajor](#ProductMajor) | 24 | Major version number. |
21-
[AssemblyVersion](#AssemblyVersion) | 24.12 | Version of Aspose.Slides assembly. |
22-
[FileVersion](#FileVersion) | 24.12 | Version of assembly file. |
19+
[ProductMinor](#ProductMinor) | 3 | Minor version number. |
20+
[ProductMajor](#ProductMajor) | 25 | Major version number. |
21+
[AssemblyVersion](#AssemblyVersion) | 25.3 | Version of Aspose.Slides assembly. |
22+
[FileVersion](#FileVersion) | 25.3 | Version of assembly file. |
2323
[Product](#Product) | Aspose.Slides for PHP via Java | Product name of Aspose.Slides |
2424

2525

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
---
2+
title: Captions
3+
second_title: Aspose.Sildes for PHP via Java API Reference
4+
description:
5+
type: docs
6+
7+
url: /aspose.slides/captions/
8+
---
9+
10+
## Captions class
11+
12+
Represents the WebVTT closed captions.
13+
14+
### getBinaryData {#getBinaryData}
15+
16+
| Name | Description |
17+
| --- | --- |
18+
| getBinaryData () | Returns the binary data of the closed captions. Read-only byte[]. |
19+
20+
**Returns:**
21+
byte
22+
23+
24+
---
25+
26+
27+
### getCaptionId {#getCaptionId}
28+
29+
| Name | Description |
30+
| --- | --- |
31+
| getCaptionId () | Returns the globally unique identifier (GUID) of the closed captions. Read-only java.util.UUID. |
32+
33+
**Returns:**
34+
UUID
35+
36+
37+
---
38+
39+
40+
### getDataAsString {#getDataAsString}
41+
42+
| Name | Description |
43+
| --- | --- |
44+
| getDataAsString () | Returns the closed captions data as UTF-8 string Read-only String. |
45+
46+
**Returns:**
47+
String
48+
49+
50+
---
51+
52+
53+
### getLabel {#getLabel}
54+
55+
| Name | Description |
56+
| --- | --- |
57+
| getLabel () | Returns or sets the label of the closed captions. Read/write String. |
58+
59+
**Returns:**
60+
String
61+
62+
63+
---
64+
65+
66+
### setLabel {#setLabel}
67+
68+
| Name | Description |
69+
| --- | --- |
70+
| setLabel (String) | Returns or sets the label of the closed captions. Read/write String. |
71+
72+
**Returns:**
73+
void
74+
75+
76+
---
77+
78+

0 commit comments

Comments
 (0)