PowerTools SPREAD for ASP.NET 8.0J
HyperLinkCellType コンストラクタ()

移動先の URL を指定せずに、新しいハイパーリンク型セルを作成します。
構文
'Declaration
 
Public Function New()
public HyperLinkCellType()
この例では、ハイパーリンク型のセル型を作成し、このセルの各プロパティを設定します。
<style>.CssStyle1 
{
    FONT: 700 12pt verdana; COLOR: yellow
}
</style>

string str = "img\\logo.jpg";
FarPoint.Web.Spread.HyperLinkCellType hlcell = new FarPoint.Web.Spread.HyperLinkCellType();
hlcell.ImageUrl = str;
hlcell.NavigateUrl = "http://www.grapecity.com";
hlcell.Target = "self";
hlcell.CssClass = "CssStyle1";
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = hlcell;
FpSpread1.ActiveSheetView.Columns[0].Width = 150;
<style>.CssStyle1 
{
    FONT: 700 12pt verdana; COLOR: yellow
}
</style>

Dim Str As String = "img\logo.jpg"
Dim hlcell As New FarPoint.Web.Spread.HyperLinkCellType()
hlcell.ImageUrl = Str
hlcell.NavigateUrl = "http://www.grapecity.com"
hlcell.Target = "self"
hlcell.CssClass = "CssStyle1"
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = hlcell
FpSpread1.ActiveSheetView.Columns(0).Width = 150

参照

HyperLinkCellType クラス
HyperLinkCellType メンバ
オーバーロード一覧

 

 


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