PowerTools SPREAD for ASP.NET 8.0J
LabelCellType コンストラクタ

ラベル型のセルを作成します。
構文
'Declaration
 
Public Function New()
public LabelCellType()
解説
LabelCellTypeクラスのインスタンスを初期化します。
この例では、ラベル型のセル型を構築し、ラベル型セルのCssClassを設定します。
<style>.CssStyle1 
{ 
    FONT: 700 12pt verdana; COLOR: yellow 
}
</style>

FarPoint.Web.Spread.LabelCellType lblcell = new FarPoint.Web.Spread.LabelCellType();
lblcell.AllowWrap = true;
int i = 100;
string fstring = i.ToString("C");
lblcell.FormatString = fstring;
lblcell.CssClass = "CssStyle1";
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = lblcell;
FpSpread1.ActiveSheetView.Cells[0, 0].Text = fstring;
<style>.CssStyle1 
{ 
    FONT: 700 12pt verdana; COLOR: yellow 
}
</style>

Dim lblcell As New FarPoint.Web.Spread.LabelCellType()
lblcell.AllowWrap = True
Dim i As Integer = 100
Dim fstring As String = i.ToString("C")
lblcell.FormatString = fstring
lblcell.CssClass = "CssStyle1"
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = lblcell
FpSpread1.ActiveSheetView.Cells(0, 0).Text = fstring
参照

LabelCellType クラス
LabelCellType メンバ

 

 


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