Method procedure SLScope.TSLDataDisplay.SaveToBitmap(String)
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TSLDataDisplay
Contents |
Syntax
Delphi:
procedure SaveToBitmap( FileName : String );
C++ Builder:
void __fastcall SaveToBitmap( String FileName );
Visual C++ (MFC):
void SaveToBitmap( CTString FileName );
Summary
Saves snapshot of the display into a bitmap file.
Description
Call this method to saves snapshot of the display into a bitmap file.
Delphi example:
SLScope1.SaveToBitmap('C:\Scope.bmp');
C++ Builder example:
SLScope1->SaveToBitmap("C:\\\Scope.bmp");
Visual C++(MFC/Win32) example:
SLScope1.SaveToBitmap("C:\\\Scope.bmp");
Visual C++/CLI example:
scope1->SaveToBitmap("C:\\\Scope.bmp");
C# example:
scope1.SaveToBitmap("C:\\\Scope.bmp");
VB example:
Scope1.SaveToBitmap("C:\Scope.bmp")