MESCIUS SPREAD for Windows Forms 15.0J
SoundLocation プロパティ
使用例 

サウンドファイルの場所を取得または設定します。
構文
'宣言
 
Public Property SoundLocation As String
public string SoundLocation {get; set;}

プロパティ値

サウンドファイルの場所。デフォルト値はString.Emptyです。
解説
このプロパティが設定されている場合は、サウンドファイルの場所が無効であっても、SoundTypeプロパティは機能しません。.wavファイルのみがサポートされています。
使用例
次のサンプルコードは、サウンド通知を使用します。
//Type a value in cell 1,1
FarPoint.Win.Spread.SoundNotify sound = new FarPoint.Win.Spread.SoundNotify();
sound.SoundLocation = "C:\\Program Files (x86)\\GrapeCity\\10sec.wav";
FarPoint.Win.Spread.CompareStringValidator svalid = new FarPoint.Win.Spread.CompareStringValidator();
svalid.ComparedOperator = FarPoint.Win.Spread.CompareStringValidatorOperator.Contains;
svalid.ComparedString = "Test";
svalid.Actions.Add(sound);
fpSpread1.Sheets[0].AddValidators(new FarPoint.Win.Spread.Model.CellRange(1, 1, 1, 1), svalid);
'Type a value in cell 1,1
Dim sound As New FarPoint.Win.Spread.SoundNotify()
sound.SoundLocation = "C:\Program Files (x86)\GrapeCity\10sec.wav"
Dim svalid As New FarPoint.Win.Spread.CompareStringValidator()
svalid.ComparedOperator = FarPoint.Win.Spread.CompareStringValidatorOperator.Contains
svalid.ComparedString = "Test"
svalid.Actions.Add(sound)
FpSpread1.Sheets(0).AddValidators(New FarPoint.Win.Spread.Model.CellRange(1, 1, 1, 1), svalid)
参照

SoundNotify クラス
SoundNotify メンバ

 

 


© MESCIUS inc. All rights reserved.