Difference between revisions of "TSCARClient.Capture"
From SCAR Divi Manual
(Created page with "==Definition== Member of TSCARClient.<source lang="scar" lines="false"> function TSCARClient.Capture: TSCARBitmap; </source> ==Availability== SCAR Divi 3.35 > Current ==Des...") |
|||
| Line 8: | Line 8: | ||
==Description== | ==Description== | ||
| − | Returns a new bitmap as a [[TSCARBitmap]] object, which contains an image of the client's entire [[TSCARClient.ImageArea|ImageArea]]. | + | Returns a new bitmap as a [[TSCARBitmap]] object, which contains an image of the client's entire [[TSCARClient.ImageArea|ImageArea]]. An extended version of this method is available as [[TSCARClient.CaptureEx|CaptureEx]]. |
==Example== | ==Example== | ||
| Line 23: | Line 23: | ||
end. | end. | ||
</source> | </source> | ||
| + | |||
| + | ==See Also== | ||
| + | *[[TSCARClient.CaptureEx]] | ||
Latest revision as of 18:19, 22 July 2012
Definition
Member of TSCARClient.function TSCARClient.Capture: TSCARBitmap;
Availability
SCAR Divi 3.35 > Current
Description
Returns a new bitmap as a TSCARBitmap object, which contains an image of the client's entire ImageArea. An extended version of this method is available as CaptureEx.
Example
var
Bmp: TSCARBitmap;
begin
Bmp := GetClient.Capture;
try
DebugBitmap(Bmp);
finally
Bmp.Free;
end;
end.