Class TOlfSVGBitmapList
Unit
Declaration
type TOlfSVGBitmapList = class(TObject)
Description
Hierarchy
- TObject
- TOlfSVGBitmapList
Overview
Methods
![]() |
class function AddAList: word; |
![]() |
class procedure DeleteList(Const Index: word); |
![]() |
class function AddItemAt(Const ToList, AtIndex: word; const SVG: String) : boolean; overload; |
![]() |
class function AddItemAt(AtIndex: word; const SVG: string) : boolean; overload; |
![]() |
class function AddItem(Const ToList: word; const SVG: string) : word; overload; |
![]() |
class function AddItem(Const ToList: word; const SVGArray: array of String) : word; overload; |
![]() |
class function AddItem(const SVG: string): word; overload; |
![]() |
class function AddItem(const SVGArray: array of string): word; overload; |
![]() |
class procedure DeleteItem(Const FromList, AtIndex: word); overload; |
![]() |
class procedure DeleteItem(Const AtIndex: word); overload; |
![]() |
class function Bitmap(Const FromList, AtIndex: word; const Width, Height: integer; const BitmapScale: single = 1) : TBitmap; overload; |
![]() |
class function Bitmap(Const FromList, AtIndex: word; const Width, Height: integer; const MarginTop: single; const MarginRight: single; const MarginBottom: single; const MarginLeft: single; const BitmapScale: single = 1) : TBitmap; overload; |
![]() |
class function Bitmap(Const AtIndex: word; const Width, Height: integer; const BitmapScale: single = 1): TBitmap; overload; |
![]() |
class function Bitmap(Const AtIndex: word; const Width, Height: integer; const MarginTop: single; const MarginRight: single; const MarginBottom: single; const MarginLeft: single; const BitmapScale: single = 1): TBitmap; overload; |
![]() |
class function BitmapWithNoCache(const FromList, AtIndex: word; const Width, Height: integer; const BitmapScale: single = 1) : TBitmap; overload; |
![]() |
class function BitmapWithNoCache(const FromList, AtIndex: word; const Width, Height: integer; const MarginTop: single; const MarginRight: single; const MarginBottom: single; const MarginLeft: single; const BitmapScale: single = 1) : TBitmap; overload; |
![]() |
class function BitmapWithNoCache(const AtIndex: word; const Width, Height: integer; const BitmapScale: single = 1) : TBitmap; overload; |
![]() |
class function BitmapWithNoCache(const AtIndex: word; const Width, Height: integer; const MarginTop: single; const MarginRight: single; const MarginBottom: single; const MarginLeft: single; const BitmapScale: single = 1) : TBitmap; overload; |
![]() |
class procedure ClearAll; |
![]() |
class procedure ClearCache; |
![]() |
class function Count(const FromList: word = 0): NativeInt; |
Description
Methods
![]() |
class function AddAList: word; |
Add a list in the global container |
![]() |
class procedure DeleteList(Const Index: word); |
Remove the list at "index" from the global container
It doesn't change others lists indexes, it's internally stored in a dictionary, not a list. |
![]() |
class function AddItem(Const ToList: word; const SVG: string) : word; overload; |
Add a SVG source to the list "ToList" and return it's index |
![]() |
class function AddItem(const SVG: string): word; overload; |
Add a SVG source to the default list and return it's index |
![]() |
class function AddItem(const SVGArray: array of string): word; overload; |
Add all items from an array of SVG sources to the default list and return the index of the first added item |
![]() |
class procedure DeleteItem(Const AtIndex: word); overload; |
Remove the SVG "AtIndex" from the default list
It doesn't change others SVG indexes, it's internally stored in a dictionary, not a list. |
![]() |
class procedure ClearAll; |
Anything you added is removed. Delete the cache, the items and the lists |
![]() |
class procedure ClearCache; |
Delete the bitmap's cache. |
![]() |
class function Count(const FromList: word = 0): NativeInt; |
Return the number of items in the specified list or the default list |
Generated by PasDoc 0.16.0.