GrapeCity SPREAD for Windows Forms 12.0J
SoundLocation プロパティ


サウンドファイルの場所を取得または設定します。
構文
'Declaration
 
Public Property SoundLocation As String
'使用法
 
Dim instance As SoundNotify
Dim value As String
 
instance.SoundLocation = value
 
value = instance.SoundLocation
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 メンバ

 

 


Copyright © 2004 GrapeCity inc.