TiScopeTrigger.Level

TiScopeTrigger

Specifies the level where the trigger mechanism will trigger a new frame to be displayed.

property Level : Double;

Description

Use Level to specify the level where the trigger mechanism will trigger a new frame to be displayed. This is used in conjunction with the Slope property.

Positive Slope Trigger Example

If the slope is set to a positive slope, then once the signal drops below the 5% mark and rises above the trigger level, then a new frame will be displayed.

PositiveSlope = True

Level = 33

ScopeTriggerPos.gif

Negative Slope Trigger Example

If the slops is set to a negative slope, then once the signal goes above the 95% mark and drops below the trigger level, then a new frame will be displayed.

PositiveSlope = False

Level = 33

ScopeTriggerNeg.gif

Note: level values range between 10 and 90, with increments of whole numbers.

Example

Delphi

iComponent.Trigger.Level := 33; //33% Trigger Level

C++ Builder

iComponent->Trigger->Level = 33; //33% Trigger Level

Contents | Index | Previous | Next