Method procedure SLScope.TSLScope.Invalidate()
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: TSLScope
Contents |
Syntax
Delphi:
procedure Invalidate();
C++ Builder:
void __fastcall Invalidate();
Visual C++ (MFC):
void Invalidate();
Summary
Invalidates the visible area of the Scope.
Description
Forces the component to be repainted.
Delphi example:
SLScope1.Invalidate;
C++ Builder example:
SLScope1->Invalidate();
Visual C++(MFC/Win32) example:
SLScope1.Invalidate();
Visual C++/CLI example:
scope1->Invalidate();
C# example:
scope1.Invalidate();
VB example:
Scope1.Invalidate()