IVideo (Video object)

1. Definition

The video object is of type IVideo and derives from ISlideShowObject.

IVideo inheris from ISlideShowObject
  function Filename: IFilename;  
  function GetVolume: Single;
  procedure SetVolume(const Value: Single);
  function GetUseVideoLength: Boolean;
  procedure SetUseVideoLength(const Value: Boolean);
  function GetMediaLength: Single;
  procedure SetMediaLength(const Value: Single);
  function GetFadeOutBackgroundMusic: Boolean;
  procedure SetFadeOutBackgroundMusic(const Value: Boolean);
end;

2. Methods

  • File name of the viseo as IFilename

    function Filename: IFilename;
    
  • Volume of the video

    function GetVolume: Single;
    procedure SetVolume(const Value: Single);
    
  • Use whole length of the video?

    function GetUseVideoLength: Boolean;
    procedure SetUseVideoLength(const Value: Boolean);
    
  • Video length

    function GetMediaLength: Single;
    procedure SetMediaLength(const Value: Single);
    
  • Starting time of the video in millisecons

    function GetStartPos: Single;
    procedure SetStartPos(const Value: Single);
    
  • Fade-out background music during video?

    function GetFadeOutBackgroundMusic: Boolean;
    procedure SetFadeOutBackgroundMusic(const Value: Boolean);