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


ツールチップが表示される時間の長さ(ミリ秒単位)を取得または設定します。
構文
'Declaration
 
Public Property ToolTipSpan As Integer
'使用法
 
Dim instance As TipNotify
Dim value As Integer
 
instance.ToolTipSpan = value
 
value = instance.ToolTipSpan
public int ToolTipSpan {get; set;}

プロパティ値

ツールチップが表示される時間の長さ(ミリ秒単位)を示すSystem.Int32値。デフォルト値は5000です。
例外
例外説明
System.ArgumentOutOfRangeException指定された値が0未満です。
解説
この値が0に設定された場合は、5000が使用されます。
次のサンプルコードは、チップ通知を使用します。
//Type a value in cell 1,1
FarPoint.Win.Spread.TipNotify tnote = new FarPoint.Win.Spread.TipNotify();
tnote.ToolTipText = "Greater than 5";
tnote.ToolTipTitle = "Error";
tnote.ToolTipIcon = ToolTipIcon.Error;
tnote.ToolTipSpan = 1000;
FarPoint.Win.Spread.CompareValueValidator compare = new FarPoint.Win.Spread.CompareValueValidator();
compare.ComparedOperator = FarPoint.Win.Spread.ValidateComparisonOperator.GreaterThan;
compare.ComparedValue = 5;
compare.Actions.Add(tnote);
fpSpread1.Sheets[0].AddValidators(new FarPoint.Win.Spread.Model.CellRange(1, 1, 1, 1), compare);
'Type a value in cell 1,1
Dim tnote As New FarPoint.Win.Spread.TipNotify()
tnote.ToolTipText = "Greater than 5"
tnote.ToolTipTitle = "Error"
tnote.ToolTipIcon = ToolTipIcon.Error
tnote.ToolTipSpan = 1000
Dim compare As New FarPoint.Win.Spread.CompareValueValidator()
compare.ComparedOperator = FarPoint.Win.Spread.ValidateComparisonOperator.GreaterThan
compare.ComparedValue = 5
compare.Actions.Add(tnote)
FpSpread1.Sheets(0).AddValidators(New FarPoint.Win.Spread.Model.CellRange(1, 1, 1, 1), compare)
参照

TipNotify クラス
TipNotify メンバ

 

 


Copyright © 2004 GrapeCity inc.