Sdílet prostřednictvím


SoundPlayer.SoundLocation Vlastnost

Definice

Získá nebo nastaví cestu k souboru nebo adresu URL .wav souboru k načtení.

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

Hodnota vlastnosti

Cesta k souboru nebo adresa URL, ze kterého se má načíst .wav soubor, nebo Empty pokud neexistuje žádná cesta k souboru. Výchozí formát je Empty.

Příklady

Následující příklad kódu ukazuje použití SoundLocation vlastnosti k přiřazení zdroje .wav souboru k instanci SoundPlayer třídy. Tento příklad kódu je součástí většího příkladu SoundPlayer pro třídu .

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

Poznámky

Tato vlastnost je nastavena na String.Empty hodnotu , pokud Stream je vlastnost nastavena Streamna hodnotu .

Platí pro

Viz také