Property SLScope.TSLDataDisplay.Hold

From Mitov Wiki Doc
Jump to: navigation, search

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:

property Hold : Boolean read FHold write SetHold;

C++ Builder:

__property bool Hold = { read=FHold, write=SetHold };

Summary

Holds (freezes) the samples on the component.

Description

If set to True, the data display will not update the DataView to reflect the new data. Instead it will hold a still image of the view as it was at the moment of setting this property to true. To resume the DataView refresh, set the property to true.


Delphi example:

SLScope1.Hold := True;

C++ Builder example:

SLScope1->Hold = true;

Visual C++(MFC/Win32) example:

SLScope1.Hold = true;

Visual C++/CLI example:

scope1->Hold = true;

C# example:

scope1.Hold = true;

VB example:

Scope1.Hold = True

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox