Version

SoundFlags Enumeration

Specifies how sounds are played by the UltraControlBase.PlaySound method.
Syntax
'Declaration
 
Public Enum SoundFlags 
   Inherits System.Enum
public enum SoundFlags : System.Enum 
Members
MemberDescription
AsynchronousThe sound is played asynchronously.
LoopThe sound is played continuously until the next call to the PlaySound method.
NoDefaultIf the specified sound file is not found, no default sound is played.
NoStopThe currently playing sound, if any, will not be interrupted.
NoWaitIf the sound driver is currently busy, the method will return without playing the sound.
SynchronousThe sound is played synchronously.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also