+\constfunc{bool}{Play}{\param{unsigned }{ flags = wxSOUND\_ASYNC}}
+
+\func{static bool}{Play}{\param{const wxString\& }{filename}, \param{unsigned}{ flags = wxSOUND\_ASYNC}}
+
+Plays the sound file. If another sound is playing, it will be interrupted.
+Returns \true on success, \false otherwise.
+
+The possible values for \arg{flags} are:
+
+\begin{twocollist}
+ \twocolitem{wxSOUND\_SYNC}{{\tt Play} will block and wait until the sound is
+ replayed.}
+ \twocolitem{wxSOUND\_ASYNC}{Sound is played asynchronously,
+ {\tt Play} returns immediately}
+ \twocolitem{wxSOUND\_ASYNC | wxSOUND\_LOOP}{Sound is played asynchronously
+ and loops until another sound is played,
+ \helpref{wxSound::Stop}{wxsoundstop} is called or the program terminates.}
+\end{twocollist}
+
+The static form is shorthand for this code:
+\begin{verbatim}
+wxSound(filename).Play(flags);
+\end{verbatim}