Difference between revisions of "TSCARBitmap.DC"
From SCAR Divi Manual
(Created page with "==Definition== Member of TSCARBitmap, read.<source lang="scar" lines="false"> property TSCARBitmap.DC: HDC; </source> ==Availability== SCAR Divi 3.35 > Current ==Descrip...") |
(No difference)
|
Latest revision as of 01:59, 4 November 2012
Definition
Member of TSCARBitmap, read.property TSCARBitmap.DC: HDC;
Availability
SCAR Divi 3.35 > Current
Description
Returns the device context handle of the bitmap image.
Example
var Bmp: TSCARBitmap; begin Bmp := TSCARBitmap.Create('deNoTYBBg+M/wnwCKjwchgsrgip/e+X/5D' + 'DFausEApHjfjv/LF+HXAlIJBiAGUPGEHjzq4YofPXp04sQJEBe34pPNCv+/3Aa' + 'qgSiGWoFX8f83h/8/XAaxhUjF/693/D+XR5JikAjdFUPVE60Y6CNTU1MiFcPVA' + 'wFQJUHFQARUCU0nRKZAEhEAWNcFGw=='); try WriteLn(Bmp.DC); finally Bmp.Free; end; end.