MESCIUS SPREAD for Windows Forms 15.0J
SystemSoundType 列挙体
使用例 使用例 

System.Media.SystemSoundに関連するシステム音の種類を指定します。
構文
'宣言
 
Public Enum SystemSoundType 
   Inherits System.Enum
public enum SystemSoundType : System.Enum 
メンバ
メンバ解説
AsteriskSystem.Media.SystemSounds.Asterisk音を指定します。
BeepSystem.Media.SystemSounds.Beep音を指定します。
ExclamationSystem.Media.SystemSounds.Exclamation音を指定します。
HandSystem.Media.SystemSounds.Hand音を指定します。
QuestionSystem.Media.SystemSounds.Question音を指定します。
使用例
次のサンプルコードは、値が無効な場合に音を鳴らします。
//Type a value in cell 1,1
FarPoint.Win.Spread.SoundNotify sound = new FarPoint.Win.Spread.SoundNotify();
sound.SoundType = FarPoint.Win.Spread.SystemSoundType.Exclamation;
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.SoundType = FarPoint.Win.Spread.SystemSoundType.Exclamation
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)
継承階層

System.Object
   System.ValueType
      System.Enum
         FarPoint.Win.Spread.SystemSoundType

参照

FarPoint.Win.Spread 名前空間
SoundNotify クラス

 

 


© MESCIUS inc. All rights reserved.