PowerTools SPREAD for ASP.NET 8.0J
StyleName プロパティ (Cell)

セルのカスタムスタイルの名前を取得または設定します。
構文
'Declaration
 
Public Property StyleName As String
public string StyleName {get; set;}

プロパティ値

このセルのスタイルの名前を含むString
この例では、スタイルを定義し、それをセルに適用します。
FarPoint.Web.Spread.Cell mycell;
FarPoint.Web.Spread.NamedStyle mnstyle = new FarPoint.Web.Spread.NamedStyle();
mnstyle.Name = "fpstyle";
mnstyle.BackColor = Color.Yellow;
FpSpread1.NamedStyles.Add(mnstyle);
mycell = FpSpread1.Cells[0, 0];
mycell.StyleName = mnstyle.Name;
Dim mycell As FarPoint.Web.Spread.Cell
Dim mnstyle As New FarPoint.Web.Spread.NamedStyle()
mnstyle.Name = "fpstyle"
mnstyle.BackColor = Color.Yellow
FpSpread1.NamedStyles.Add(mnstyle)
mycell = FpSpread1.Cells.Item(0, 0)
mycell.StyleName = mnstyle.Name
参照

Cell クラス
Cell メンバ
NamedStyle クラス

 

 


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