ITransformation: Unterschied zwischen den Versionen

Aus AquaSoft Wiki
Zur Navigation springenZur Suche springen
(Die Seite wurde neu angelegt: „Die Flexicollage ist vom Typ '''ITransformation''' und leitet von '''ISlideShowObject''' ab. Es fungiert als visueller Container für andere [[ISlideShowOb…“)
 
(Weiterleitung nach Flexicollage erstellt)
 
Zeile 1: Zeile 1:
Die Flexicollage ist vom Typ '''ITransformation''' und leitet von '''[[ISlideShowObject]]''' ab. Es fungiert als visueller Container für andere [[ISlideShowObject|SlideShowObjects]]. Diese können ohne Einschränkungen angeordnet werden. Die Flexicollage kann im Gegensatz zum [[Kapitelobjekt]] eigene Bewegungspfade und Überblendungen haben.
+
#REDIRECT [[Flexicollage]]
 
 
<code>
 
  IChapter '''inherits from''' [[ISlideShowObject]]
 
    function GetCaption: string;
 
    procedure SetCaption (const Value: string);
 
 
 
    procedure SetFillBackground(const fillBG: [[TFillbackgroundMode]]);
 
    function GetFillBackground: [[TFillbackgroundMode]];
 
 
 
    procedure SetItem(Index: Integer; Item: ISlideShowObject);
 
    function GetItem(Index: Integer): ISlideShowObject;
 
    function GetCount: Integer;
 
 
 
    property Caption: string read GetCaption write SetCaption;
 
    property FillBackground: [[TFillbackgroundMode]] read GetFillBackground write SetFillBackground;
 
    property Count: Integer read GetCount;
 
  end;
 
</code>
 
 
 
= Methoden =
 
* Objekt Erzeugung
 
<code>
 
  function CreateTransformation: ITransformation
 
</code>
 
 
 
 
 
* Getter und Setter für Namen der Flexicollage
 
<code>
 
  function GetCaption: string;
 
  procedure SetCaption (const Value: string);
 
</code>
 
 
 
 
 
* Getter und Setter für Hintergrundfüllung
 
<code>
 
  procedure SetFillBackground(const fillBG: [[TFillbackgroundMode]]);
 
  function GetFillBackground: [[TFillbackgroundMode]];
 
</code>
 
 
 
 
 
* Getter und Setter für Kindobjekte
 
<code>
 
  procedure SetItem(Index: Integer; Item: ISlideShowObject);
 
  function GetItem(Index: Integer): ISlideShowObject;
 
</code>
 
 
 
 
 
* Anzahl der Kindelemente
 
<code>
 
  function GetCount: Integer;
 
</code>
 
  
 
[[Kategorie:Scripting-API]]
 
[[Kategorie:Scripting-API]]
 +
[[Kategorie:Language]]

Aktuelle Version vom 23. Juni 2014, 16:42 Uhr

Weiterleitung nach: