You are here: Symbol Reference > SignalUtils Namespace > Structs, Records, Enums > SignalUtils.TMonitorMode Enumeration
DSP Master VCL
ContentsIndex
PreviousUpNext
SignalUtils.TMonitorMode Enumeration

Defines signal monitoring type.

Pascal
TMonitorMode = (
  mmFromStart,
  mmFromEnd
);
Members 
Description 
mmFromStart 
The data which is monitored from the buffer is the oldest and to be read next. 
mmFromEnd 
The data which is monitored from the buffer is the newest and to exit the buffer as the last. 

When there is a need to monitor most recent data written use mmFromEnd. To monitor most recent data read, use mmFromStart. Typically when when we are recording, we want to monitor most recent data written and when there is playback we want to see the oldest data from the buffer just to be played.

Copyright (c) 1999-2025 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!