MESCIUS SPREAD for ASP.NET 10.0J
ResetFont メソッド (Cell)

セルのフォントをリセットし、そのセルにデフォルトセルのフォントを継承します。
構文
'Declaration
 
Public Sub ResetFont() 
public void ResetFont()
次のサンプルコードは、ResetFontメソッドを使用します。
FarPoint.Web.Spread.Cell mycell;
mycell = FpSpread1.Cells[0,0];
mycell.Font.Bold = true;
mycell.Font.Name = "ComicSansMS";
FpSpread1.ActiveSheetView.SetValue(0,0,"Font");
//mycell.ResetFont();
Dim mycell As FarPoint.Web.Spread.Cell
mycell = FpSpread1.Cells(0, 0)
mycell.Font.Bold = True
mycell.Font.Name = "ComicSansMS"
FpSpread1.ActiveSheetView.SetValue(0, 0, "Font")
'mycell.ResetFont()
参照

Cell クラス
Cell メンバ

 

 


© MESCIUS inc. All rights reserved.