Method procedure SLScope.TSLDataDisplay.SaveToJpeg(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 SaveToJpeg( FileName : String );
C++ Builder:
void __fastcall SaveToJpeg( String FileName );
Visual C++ (MFC):
void SaveToJpeg( CTString FileName );
Summary
Saves snapshot of the display into a JPEG file.
Description
Call this method to saves snapshot of the display into a JPEG file.
Delphi example:
SLScope1.SaveToJpeg('C:\Scope.jpg');
C++ Builder example:
SLScope1->SaveToJpeg("C:\\\Scope.jpg");
Visual C++(MFC/Win32) example:
SLScope1.SaveToJpeg("C:\\\Scope.jpg");
Visual C++/CLI example:
scope1->SaveToJpeg("C:\\\Scope.jpg");
C# example:
scope1.SaveToJpeg("C:\\\Scope.jpg");
VB example:
Scope1.SaveToJpeg("C:\Scope.jpg")