SoundPlayer.SoundLocation Propiedad

Definición

Obtiene o establece la ruta de acceso o la dirección URL del archivo .wav que se va a cargar.

public:
 property System::String ^ SoundLocation { System::String ^ get(); void set(System::String ^ value); };
public string SoundLocation { get; set; }
member this.SoundLocation : string with get, set
Public Property SoundLocation As String

Valor de propiedad

La ruta de acceso o la dirección URL desde la que se carga un archivo .wav, o bien, Empty si no hay ninguna ruta de acceso de archivo. De manera predeterminada, es Empty.

Ejemplos

En el ejemplo de código siguiente se muestra el uso de la SoundLocation propiedad para asignar el origen del archivo .wav a una instancia de la SoundPlayer clase . Este ejemplo de código es parte de un ejemplo más grande proporcionado para la clase SoundPlayer.

try
{
   
   // Assign the selected file's path to 
   // the SoundPlayer object.  
   player->SoundLocation = filepathTextbox->Text;
   
   // Load the .wav file.
   player->Load();
}
catch ( Exception^ ex ) 
{
   ReportStatus( ex->Message );
}
try
{
    // Assign the selected file's path to 
    // the SoundPlayer object.  
    player.SoundLocation = filepathTextbox.Text;

    // Load the .wav file.
    player.Load();
}
catch (Exception ex)
{
    ReportStatus(ex.Message);
}
Try
    ' Assign the selected file's path to the SoundPlayer object.
    player.SoundLocation = filepathTextbox.Text

    ' Load the .wav file.
    player.Load()
Catch ex As Exception
    ReportStatus(ex.Message)
End Try

Comentarios

Esta propiedad se establece String.Empty en cuando la Stream propiedad se establece en .Stream

Se aplica a

Consulte también