VideoFile.position Property¶
Module: VideoFile
Type: int
Definition¶
An integer property representing the current playback position in the video file.
This can be used to seek to a specific position in the video.
int get position => getPosition();
set position(int value) => setPosition(value);
Exceptions
An error has occurred during Devices Library execution.
public int position
{
get => Getposition();
set => Setposition(ref value);
}
Exceptions
An error has occurred during Devices Library execution.
public int getPosition() throws DevicesException
public void setPosition(int position) throws DevicesException
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesVideoFile_GetPosition (ID3_DEVICES_VIDEO_FILE hVideoFile, int * position)
int id3DevicesVideoFile_SetPosition (ID3_DEVICES_VIDEO_FILE hVideoFile, int position)
Returns