Kapitelobjekt: Unterschied zwischen den Versionen
Aus AquaSoft Wiki
Zur Navigation springenZur Suche springen (Die Seite wurde neu angelegt: „ function Text: IScripting_IText; function GetCaption: string; procedure SetCaption (const Value: string); procedure SetItem(Index: Integer; Item:…“) |
|||
(4 dazwischenliegende Versionen von 3 Benutzern werden nicht angezeigt) | |||
Zeile 1: | Zeile 1: | ||
− | + | Das Kapitelobjekt ist vom Typ '''IChapter''' und leitet von '''[[ISlideShowObject]]''' ab. Es fungiert als visueller Container für andere [[ISlideShowObject|SlideShowObjects]]. Diese können ohne Einschränkungen angeordnet werden. | |
+ | |||
+ | <code> | ||
+ | IChapter '''inherits from''' [[ISlideShowObject]] | ||
function GetCaption: string; | function GetCaption: string; | ||
procedure SetCaption (const Value: string); | procedure SetCaption (const Value: string); | ||
+ | end; | ||
+ | </code> | ||
+ | |||
+ | = Methoden = | ||
+ | * Objekt Erzeugung | ||
+ | <code> | ||
+ | function CreateChapterObject: IChapter | ||
+ | </code> | ||
+ | * Getter und Setter für Namen des Kapitelobjektes | ||
+ | <code> | ||
+ | function GetCaption: string; | ||
+ | procedure SetCaption (const Value: string); | ||
+ | </code> | ||
− | + | [[Kategorie:Scripting-API]] | |
− | |||
− |
Aktuelle Version vom 15. September 2012, 19:26 Uhr
Das Kapitelobjekt ist vom Typ IChapter und leitet von ISlideShowObject ab. Es fungiert als visueller Container für andere SlideShowObjects. Diese können ohne Einschränkungen angeordnet werden.
IChapter inherits from ISlideShowObject
function GetCaption: string;
procedure SetCaption (const Value: string);
end;
Methoden
- Objekt Erzeugung
function CreateChapterObject: IChapter
- Getter und Setter für Namen des Kapitelobjektes
function GetCaption: string;
procedure SetCaption (const Value: string);