Method procedure SLScope.TSLDataDisplay.RefreshView()
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 RefreshView();
C++ Builder:
void __fastcall RefreshView();
Visual C++ (MFC):
void RefreshView();
Summary
Repaints the component with the most current data.
Description
Forces the view to show the current values from the data buffers. Use this method immediately after setting new data into the channels, to make the data visible.
Delphi example:
SLScope1.RefreshView;
C++ Builder example:
SLScope1->RefreshView();
Visual C++(MFC/Win32) example:
SLScope1.RefreshView();
Visual C++/CLI example:
scope1->RefreshView();
C# example:
scope1.RefreshView();
VB example:
Scope1.RefreshView()