Method procedure SLScope.TSLChannelData.Clear()
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: TSLChannelData
Contents |
Syntax
Delphi:
procedure Clear();
C++ Builder:
void __fastcall Clear();
Visual C++ (MFC):
void Clear();
Summary
Clears the data in the channel.
Description
Use this method to clear the data in the channel the data in the channel.
Delphi example:
SLScope1.Channels[0].Data.Clear;
C++ Builder example:
SLScope1->Channels->Channels[0]->Data->Clear();
Visual C++(MFC/Win32) example:
SLScope1.Channels[0].Data.Clear();
Visual C++/CLI example:
scope1->Channels[0]->Data->Clear();
C# example:
scope1.Channels[0].Data.Clear();
VB example:
Scope1.Channels(0).Data.Clear()