Method procedure SLWaterfall.TSLWaterfallData.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: TSLWaterfallData
Contents |
Syntax
Delphi:
procedure Clear();
C++ Builder:
void __fastcall Clear();
Visual C++ (MFC):
void Clear();
Summary
Clears the Waterfall data.
Description
Call this method to clear the waterfall data. Erases all of the internal history buffers, and clears the view.
Delphi example:
SLWaterfall1.Data.Clear;
C++ Builder example:
SLWaterfall1->Data->Clear();
Visual C++(MFC/Win32) example:
SLWaterfall1.Data.Clear();
Visual C++/CLI example:
waterfall1->Data->Clear();
C# example:
waterfall1.Data.Clear();
VB example:
Waterfall1.Data.Clear()