Contains constants that are used to signify types of position notifications.
Definition
Visual Basic
Public Enum PositionNotifyFlag
C#
public enum PositionNotifyFlag
C++
public enum class PositionNotifyFlag
JScript
public enum PositionNotifyFlag
Members
Member
Value
Description
OffsetStop
-1
Causes the event to be signaled when playback or capture stops.
None
0
No event is raised.
Remarks
This enumeration can be used by the BufferPositionNotify.Offset property to signify events that are not absolute offset times. In order to use this enumeration as such, you must cast it to an integer, as in the following code:
[C#] int offsetStop = (int)PositionNotifyFlag.OffsetStop;
BufferPositionNotify.Offset = offsetStop;