Note: This documentation is preliminary and is subject to change.
Contains constants that are used to signify types of position notifications.
Definition
Visual Basic .NET
Public Enum PositionNotifyFlag
C#
public enum PositionNotifyFlag
Managed C++
__value public enum PositionNotifyFlag
JScript .NET
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;