Infragistics(R) NetAdvantage(R) Windows Forms
SoundFlags Enumeration
See Also  E-mail your feedback on this topic.
Infragistics.Win Namespace : SoundFlags Enumeration

Specifies how sounds are played by the UltraControlBase.PlaySound method.

Syntax

Visual Basic (Declaration) 
Public Enum SoundFlags 
   Inherits System.Enum
C# 
public enum SoundFlags : System.Enum 

Members

MemberDescription
Asynchronous The sound is played asynchronously.
Loop The sound is played continuously until the next call to the PlaySound method.
NoDefault If the specified sound file is not found, no default sound is played.
NoStop The currently playing sound, if any, will not be interrupted.
NoWait If the sound driver is currently busy, the method will return without playing the sound.
Synchronous The sound is played synchronously.

See Also