You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/java/english/com.aspose.slides/_index.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,7 @@ url: /com.aspose.slides/
62
62
|[BlackWhiteMode](../com.aspose.slides/blackwhitemode)| Determines how colored shape should be transformed into black and white. |
63
63
|[BlobManagementOptions](../com.aspose.slides/blobmanagementoptions)| Represents options which can be used to manage BLOB handling rules and other BLOB settings. |
64
64
|[Blur](../com.aspose.slides/blur)| Represents a Blur effect that is applied to the entire shape, including its fill. |
65
+
|[BrightnessContrast](../com.aspose.slides/brightnesscontrast)| Represents a BrightnessContrast effect. |
65
66
|[BrowsedAtKiosk](../com.aspose.slides/browsedatkiosk)| Browsed at a kiosk (full screen) |
66
67
|[BrowsedByIndividual](../com.aspose.slides/browsedbyindividual)| Browsed by individual (window) |
67
68
|[BubbleSizeRepresentationType](../com.aspose.slides/bubblesizerepresentationtype)| Specifies the possible ways to represent data as bubble chart sizes. |
@@ -192,6 +193,9 @@ url: /com.aspose.slides/
192
193
|[ErrorBarValueType](../com.aspose.slides/errorbarvaluetype)| Represents type of error bar value |
193
194
|[ErrorBarsCustomValues](../com.aspose.slides/errorbarscustomvalues)| Specifies the errors bar values. |
194
195
|[ErrorBarsFormat](../com.aspose.slides/errorbarsformat)| Represents error bars of chart series. |
196
+
|[ExcelDataCell](../com.aspose.slides/exceldatacell)| Represents a single cell in an Excel workbook. |
197
+
|[ExcelDataWorkbook](../com.aspose.slides/exceldataworkbook)| Represents a workbook that provides access to Excel data for general use. |
198
+
|[ExcelWorkbookImporter](../com.aspose.slides/excelworkbookimporter)| Provides functionality for importing content from an Excel workbook into a presentation. |
195
199
|[ExternalResourceResolver](../com.aspose.slides/externalresourceresolver)| Callback class used to resolve external resources during Html, Svg documents import. |
196
200
|[ExtraColorScheme](../com.aspose.slides/extracolorscheme)| Represents an additional color scheme which can be assigned to a slide. |
197
201
|[ExtraColorSchemeCollection](../com.aspose.slides/extracolorschemecollection)| Represents a collection of additional color schemes. |
@@ -714,6 +718,8 @@ url: /com.aspose.slides/
714
718
|[IBlobManagementOptions](../com.aspose.slides/iblobmanagementoptions)| A Binary Large Object (BLOB) is a binary data stored as a single entity - i.e. |
715
719
|[IBlur](../com.aspose.slides/iblur)| Represents a Blur effect that is applied to the entire shape, including its fill. |
716
720
|[IBlurEffectiveData](../com.aspose.slides/iblureffectivedata)| Immutable object which represents a Blur effect that is applied to the entire shape, including its fill. |
721
+
|[IBrightnessContrast](../com.aspose.slides/ibrightnesscontrast)| Represents a BrightnessContrast effect. |
722
+
|[IBrightnessContrastEffectiveData](../com.aspose.slides/ibrightnesscontrasteffectivedata)| Immutable object which represents a BrightnessContrast effect. |
717
723
|[IBulkTextFormattable](../com.aspose.slides/ibulktextformattable)| Represents an object with possibility of bulk setting child text elements' formats. |
|[IErrorBarsCustomValues](../com.aspose.slides/ierrorbarscustomvalues)| Specifies the errors bar values. |
814
820
|[IErrorBarsFormat](../com.aspose.slides/ierrorbarsformat)| Represents error bars of chart series. |
821
+
|[IExcelDataCell](../com.aspose.slides/iexceldatacell)| Represents a single cell in an Excel workbook. |
822
+
|[IExcelDataWorkbook](../com.aspose.slides/iexceldataworkbook)| Represents a workbook that provides access to Excel data for general use. |
815
823
|[IExternalResourceResolver](../com.aspose.slides/iexternalresourceresolver)| Callback interface used to resolve external resources during Html, Svg documents import. |
816
824
|[IExtraColorScheme](../com.aspose.slides/iextracolorscheme)| Represents an additional color scheme which can be assigned to a slide. |
817
825
|[IExtraColorSchemeCollection](../com.aspose.slides/iextracolorschemecollection)| Represents a collection of additional color schemes. |
Copy file name to clipboardExpand all lines: content/java/english/com.aspose.slides/audioframe/_index.md
+36Lines changed: 36 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -82,6 +82,7 @@ Represents an audio clip on a slide.
82
82
| [setTrimFromStart(float value)](#setTrimFromStart-float-) | Specifies the time duration to be removed from the beginning of the media during playback, in milliseconds. |
83
83
| [getTrimFromEnd()](#getTrimFromEnd--) | Specifies the time duration to be removed from the end of the media during playback, in milliseconds. |
84
84
| [setTrimFromEnd(float value)](#setTrimFromEnd-float-) | Specifies the time duration to be removed from the end of the media during playback, in milliseconds. |
85
+
| [getCaptionTracks()](#getCaptionTracks--) | Gets the collection of closed captions associated with the audio frame. |
@@ -731,3 +732,38 @@ Specifies the time duration to be removed from the end of the media during playb
731
732
| --- | --- | --- |
732
733
| value | float | |
733
734
735
+
### getCaptionTracks() {#getCaptionTracks--}
736
+
```
737
+
public final ICaptionsCollection getCaptionTracks()
738
+
```
739
+
740
+
741
+
Gets the collection of closed captions associated with the audio frame. This property is read-only and returns an [ICaptionsCollection](../../com.aspose.slides/icaptionscollection) containing all caption tracks.
742
+
743
+
--------------------
744
+
745
+
> ```
746
+
> Example:
747
+
>
748
+
> Presentation pres = new Presentation("audio with captions.pptx");
749
+
> try {
750
+
> for (IShape shape : pres.getSlides().get_Item(0).getShapes())
751
+
> {
752
+
> if (shape instanceof IAudioFrame)
753
+
> {
754
+
> IAudioFrame audioFrame = (IAudioFrame) shape;
755
+
> // Save the caption track's binary data as a .vtt file
756
+
> for (ICaptions captionTrack : audioFrame.getCaptionTracks()) {
757
+
> FileOutputStream fos = new FileOutputStream(captionTrack.getCaptionId() + ".vtt");
public final class BrightnessContrast extends ImageTransformOperation implements IBrightnessContrast, IVisualEffect
15
+
```
16
+
17
+
Represents a BrightnessContrast effect. Ajusts brightness and contrast
18
+
## Methods
19
+
20
+
| Method | Description |
21
+
| --- | --- |
22
+
|[getEffective()](#getEffective--)| Gets effective BrightnessContrast effect data with the inheritance applied. |
23
+
|[equals(Object obj)](#equals-java.lang.Object-)| Determines whether the specified [BrightnessContrast](../../com.aspose.slides/brightnesscontrast) is equal to the current [BrightnessContrast](../../com.aspose.slides/brightnesscontrast). |
24
+
|[hashCode()](#hashCode--)| Serves as a hash function for a particular type. |
25
+
### getEffective() {#getEffective--}
26
+
```
27
+
public final IBrightnessContrastEffectiveData getEffective()
28
+
```
29
+
30
+
31
+
Gets effective BrightnessContrast effect data with the inheritance applied.
32
+
33
+
**Returns:**
34
+
[IBrightnessContrastEffectiveData](../../com.aspose.slides/ibrightnesscontrasteffectivedata) - A [IBrightnessContrastEffectiveData](../../com.aspose.slides/ibrightnesscontrasteffectivedata).
Determines whether the specified [BrightnessContrast](../../com.aspose.slides/brightnesscontrast) is equal to the current [BrightnessContrast](../../com.aspose.slides/brightnesscontrast).
42
+
43
+
**Parameters:**
44
+
| Parameter | Type | Description |
45
+
| --- | --- | --- |
46
+
| obj | java.lang.Object | The [BrightnessContrast](../../com.aspose.slides/brightnesscontrast) to compare. |
47
+
48
+
**Returns:**
49
+
boolean - true if objects are equal; otherwise, false.
0 commit comments