Difference between revisions of "FreeBitmap"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> function FreeBitmap(const Bmp: Integer): Boolean; </source> ==Availability== SCAR Divi 3.00 > Current ==Description== Frees a...") |
|||
Line 5: | Line 5: | ||
==Availability== | ==Availability== | ||
− | SCAR Divi 3.00 > | + | SCAR Divi 3.00 > 3.34 |
==Description== | ==Description== | ||
Line 30: | Line 30: | ||
*[[BitmapAssigned]] | *[[BitmapAssigned]] | ||
− | [[Category: | + | [[Category:Deprecated Functions]] |
− |
Latest revision as of 01:38, 4 November 2012
Definition
function FreeBitmap(const Bmp: Integer): Boolean;
Availability
SCAR Divi 3.00 > 3.34
Description
Frees a bitmap with index specified by Bmp, it returns true if the bitmap was assigned and found in the bitmaps resource manager.
Example
var b: Integer; begin b := BitmapFromString(1, 1, ''); WriteLn(BitmapAssigned(b)); FreeBitmap(b); WriteLn(BitmapAssigned(b)); end.
Output:
1 0