Videoobjekt: Unterschied zwischen den Versionen

Aus AquaSoft Wiki
Zur Navigation springenZur Suche springen
 
Zeile 3: Zeile 3:
 
<code>
 
<code>
 
   IVideo '''inheris from''' [[ISlideShowObject]]
 
   IVideo '''inheris from''' [[ISlideShowObject]]
     function Filename: IFilename;   
+
     function Filename: [[IFilename]];   
 
     function GetVolume: Single;
 
     function GetVolume: Single;
 
     procedure SetVolume(const Value: Single);
 
     procedure SetVolume(const Value: Single);

Aktuelle Version vom 15. August 2012, 14:34 Uhr

Das Videoobjekt ist vom Typ IVideo und leitet von ISlideShowObject ab.

 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;

Methoden

 function Filename: IFilename;


  • Lautstärke des Videos

 function GetVolume: Single;
 procedure SetVolume(const Value: Single);


  • Wird komplette Video-Länge genutzt?

 function GetUseVideoLength: Boolean;
 procedure SetUseVideoLength(const Value: Boolean);


  • Videolänge

 function GetMediaLength: Single;
 procedure SetMediaLength(const Value: Single);


  • Beginn des Videos in Millisekunden

 function GetStartPos: Single;
 procedure SetStartPos(const Value: Single);


  • Hintergrundmusik bei Video ausblenden?

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