PositionNotifyFlag Enumeration (Microsoft.DirectX.DirectSound)

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;

Enumeration Information

Namespace Microsoft.DirectX.DirectSound
Assembly Microsoft.DirectX.DirectSound (microsoft.directx.directsound.dll)
Strong Name Microsoft.DirectX.DirectSound,  Version=1.0.900.0,  Culture=neutral,  PublicKeyToken=d3231b57b74a1492

See Also