Collagenobjekt: Unterschied zwischen den Versionen
Aus AquaSoft Wiki
Zur Navigation springenZur Suche springenZeile 1: | Zeile 1: | ||
Das Collagenobjekt ist vom Typ '''ICollage''' und leitet von '''[[ISlideShowObject]]''' ab. Es fungiert als visueller Container für andere [[ISlideShowObject|SlideShowObjects]]. Diese können nur untereinander angeordnet werden und sind automatisch alle gleich lang. | Das Collagenobjekt ist vom Typ '''ICollage''' und leitet von '''[[ISlideShowObject]]''' ab. Es fungiert als visueller Container für andere [[ISlideShowObject|SlideShowObjects]]. Diese können nur untereinander angeordnet werden und sind automatisch alle gleich lang. | ||
− | |||
− | |||
− | |||
<code> | <code> | ||
ICollage '''inherits from''' [[ISlideShowObject]] | ICollage '''inherits from''' [[ISlideShowObject]] | ||
function GetCaption: string; | function GetCaption: string; | ||
procedure SetCaption (const Value: string); | procedure SetCaption (const Value: string); | ||
+ | function Content: [[IPictureContent]]; | ||
end; | end; | ||
+ | </code> | ||
+ | |||
+ | = Methoden = | ||
+ | |||
+ | * Getter und Setter für Namen des Collagenobjektes | ||
+ | <code> | ||
+ | function GetCaption: string; | ||
+ | procedure SetCaption (const Value: string); | ||
+ | </code> | ||
+ | |||
+ | |||
+ | * Da eine Collage als eigenes Bild gilt, hat es auch einen Bildinhalt vom Typ '''[[IPictureContent]]''' | ||
+ | <code> | ||
+ | function Content: IPictureContent; | ||
</code> | </code> | ||
[[Kategorie:Scripting-API]] | [[Kategorie:Scripting-API]] |
Version vom 15. August 2012, 10:36 Uhr
Das Collagenobjekt ist vom Typ ICollage und leitet von ISlideShowObject ab. Es fungiert als visueller Container für andere SlideShowObjects. Diese können nur untereinander angeordnet werden und sind automatisch alle gleich lang.
ICollage inherits from ISlideShowObject
function GetCaption: string;
procedure SetCaption (const Value: string);
function Content: IPictureContent;
end;
Methoden
- Getter und Setter für Namen des Collagenobjektes
function GetCaption: string;
procedure SetCaption (const Value: string);
- Da eine Collage als eigenes Bild gilt, hat es auch einen Bildinhalt vom Typ IPictureContent
function Content: IPictureContent;