SoundPlayer.SoundLocation プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
読み込む .wav ファイルのファイル パスまたは URL を取得または設定します。
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
プロパティ値
.wav ファイルの読み込み元のファイル パスまたは URL。ファイル パスが存在しない場合は Empty。 既定値は、Empty です。
例
次のコード例では、 プロパティを SoundLocation 使用して、.wav ファイル ソースを クラスのインスタンスに割り当てる方法を SoundPlayer 示します。 このコード例は、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
注釈
プロパティが に String.Empty 設定されている場合、 Stream このプロパティは に Stream設定されます。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET