VideoCollection

Inheritance: java.lang.Object, com.aspose.slides.DomObject

All Implemented Interfaces: com.aspose.slides.IVideoCollection

public class VideoCollection extends DomObject<Presentation> implements IVideoCollection

Represents a collection of Video objects.

Methods

MethodDescription
size()Returns a number of video files in the collection.
get_Item(int index)Gets the element at the specified index.
addVideo(IVideo video)Adds a copy of an video file from an another presentation.
addVideo(InputStream stream)Creates and adds a video to a presentation from stream.
addVideo(InputStream stream, int loadingStreamBehavior)Creates and adds a video to a presentation from stream.
addVideo(byte[] videoData)Creates and adds a video to a presentation from byte array.
copyTo(System.Array array, int index)Copies videos to specified array starting from specified index.
isSynchronized()Returns a value indicating whether access to the collection is synchronized (thread-safe).
getSyncRoot()Returns a synchronization root.
iterator()Returns an enumerator that iterates through the collection.
iteratorJava()Returns a java iterator for the entire collection.

size()

public final int size()

Returns a number of video files in the collection. Read-only int.

Returns: int

get_Item(int index)

public final IVideo get_Item(int index)

Gets the element at the specified index. Read-only IVideo.

Parameters:

ParameterTypeDescription
indexint

Returns: IVideo

addVideo(IVideo video)

public final IVideo addVideo(IVideo video)

Adds a copy of an video file from an another presentation.

Parameters:

ParameterTypeDescription
videoIVideoSource video.

Returns: IVideo - Added video.

addVideo(InputStream stream)

public final IVideo addVideo(InputStream stream)

Creates and adds a video to a presentation from stream.

Parameters:

ParameterTypeDescription
streamjava.io.InputStreamStream to add video file from.

Returns: IVideo - Added Video.

addVideo(InputStream stream, int loadingStreamBehavior)

public final IVideo addVideo(InputStream stream, int loadingStreamBehavior)

Creates and adds a video to a presentation from stream.

Parameters:

ParameterTypeDescription
streamjava.io.InputStreamStream to add video file from.
loadingStreamBehaviorintThe behavior which will be applied to the stream.

Returns: IVideo - Added IVideo.

addVideo(byte[] videoData)

public final IVideo addVideo(byte[] videoData)

Creates and adds a video to a presentation from byte array.

Parameters:

ParameterTypeDescription
videoDatabyte[]Video bytes.

Returns: IVideo - Added video.

copyTo(System.Array array, int index)

public final void copyTo(System.Array array, int index)

Copies videos to specified array starting from specified index.

Parameters:

ParameterTypeDescription
arraycom.aspose.ms.System.ArrayArray.
indexintIndex.

isSynchronized()

public final boolean isSynchronized()

Returns a value indicating whether access to the collection is synchronized (thread-safe). Read-only boolean.

Returns: boolean

getSyncRoot()

public final Object getSyncRoot()

Returns a synchronization root. Read-only Object.

Returns: java.lang.Object

iterator()

public final System.Collections.Generic.IGenericEnumerator<IVideo> iterator()

Returns an enumerator that iterates through the collection.

Returns: com.aspose.ms.System.Collections.Generic.IGenericEnumerator<com.aspose.slides.IVideo> - A IGenericEnumerator that can be used to iterate through the collection.

iteratorJava()

public final System.Collections.Generic.IGenericEnumerator<IVideo> iteratorJava()

Returns a java iterator for the entire collection.

Returns: com.aspose.ms.System.Collections.Generic.IGenericEnumerator<com.aspose.slides.IVideo> - An java.util.Iterator for the entire collection.