PowerTools SPREAD for ASP.NET 8.0J
ToolTip プロパティ (HyperLinkCellType)

マウスポインタがハイパーリンク型セルの上に置かれたときに表示されるテキストを取得または設定します。
構文
'Declaration
 
Public Property ToolTip As String
public string ToolTip {get; set;}

プロパティ値

ツールチップのテキストを含むString
次のサンプルコードは、リンクのツールチップを設定します。
FarPoint.Web.Spread.HyperLinkCellType hl = new FarPoint.Web.Spread.HyperLinkCellType();
hl.NavigateUrl = "http://www.grapecity.com";
hl.Target = "self";
hl.ToolTip = "Go see GrapeCity";
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = hl;
Dim hl As New FarPoint.Web.Spread.HyperLinkCellType
hl.NavigateUrl = "http://www.grapecity.com"
hl.Target = "self"
hl.ToolTip = "Go see GrapeCity"
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = hl
参照

HyperLinkCellType クラス
HyperLinkCellType メンバ

 

 


© 2003-2015, GrapeCity inc. All rights reserved.