TMonitorMode Enumeration

type TMonitorMode = ( mmFromStart, mmFromEnd);

Defines signal monitoring type.

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.

Values

NameDescription
mmFromEndThe data which is monitored from the buffer is the newest and to exit the buffer as the last.
mmFromStartThe data which is monitored from the buffer is the oldest and to be read next.