PowerTools SPREAD for Windows Forms 8.0J
Link プロパティ (HyperLinkCellType)


ハイパーリンクを取得または設定します。
構文
'Declaration
 
Public Property Link As String
'使用法
 
Dim instance As HyperLinkCellType
Dim value As String
 
instance.Link = value
 
value = instance.Link
public string Link {get; set;}

プロパティ値

リンク先を含む String
解説

これはリンク先のURLです。正しいアプリケーションを起動できる完全なURLであることを確認してください。

リンク先にはhttp://www.fpoint.comのようなWebサイトのURLや、mailto:fpdocs@fpoint.comのような電子メールリンクを指定できます。有効なURLであれば、どのようなものでも機能します。

次のサンプルコードは、ハイパーリンク型セルのプロパティの使用方法を示します。
FarPoint.Win.Spread.CellType.HyperLinkCellType hlnkcell = new FarPoint.Win.Spread.CellType.HyperLinkCellType();
hlnkcell.BackgroundImage = new FarPoint.Win.Picture(Image.FromFile("..\\images\\mail16a.ico"));
hlnkcell.Link = "http://www.fpoint.com"; 
hlnkcell.LinkArea = new LinkArea(9,16);
hlnkcell.LinkColor = Color.DarkRed;
hlnkcell.Text = "Click to See Our Web Site.";
hlnkcell.VisitedLinkColor = Color.Gray;
fpSpread1.Sheets[0].Cells[7,2].CellType = hlnkcell;
Dim hlnkcell As New FarPoint.Win.Spread.CellType.HyperLinkCellType()
hlnkcell.BackgroundImage = new FarPoint.Win.Picture(Image.FromFile("..\images\mail16a.ico"))
hlnkcell.Link = "http://www.fpoint.com"
hlnkcell.LinkArea = new LinkArea(9,16)
hlnkcell.LinkColor = Color.DarkRed
hlnkcell.Text = "Click to See Our Web Site."
hlnkcell.VisitedLinkColor = Color.Gray
fpSpread1.Sheets(0).Cells(7,2).CellType = hlnkcell
参照

HyperLinkCellType クラス
HyperLinkCellType メンバ

 

 


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