MESCIUS SPREAD for ASP.NET 10.0J サンプルコード集
URL以外のテキストを表示する

ハイパーリンク型セルを設定したセルのTextプロパティにテキストを設定します。

実行例:

HyperLinkCellType hp = new HyperLinkCellType()
{
    NavigateUrl = "https://developer.mescius.jp/"
};
FpSpread1.Cells[0, 1].CellType = hp;
FpSpread1.Cells[0, 1].Text = "MESCIUS";
Dim hp As New HyperLinkCellType() With { 
    .NavigateUrl = https://developer.mescius.jp/
}
FpSpread1.Cells(0, 1).CellType = hp
FpSpread1.Cells(0, 1).Text = "MESCIUS"

 

 


© MESCIUS inc. All rights reserved.