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

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

プロパティ値

このセルの親スタイルの名前を含むString
解説
このプロパティは、このセルに継承されたスタイルプロパティの親スタイル名(NamedStyleオブジェクト)を処理します。
この例では、セルの親スタイルを設定します。
FarPoint.Web.Spread.NamedStyle ns = new FarPoint.Web.Spread.NamedStyle("Style", "DataAreaDefault");
FarPoint.Web.Spread.Cell c;
ns.Border = new FarPoint.Web.Spread.Border(Color.Red);
c = FpSpread1.ActiveSheetView.Cells[0, 0];
FpSpread1.NamedStyles.Add(ns);
c.ParentStyleName = "Style";
Dim ns As New FarPoint.Web.Spread.NamedStyle("Style", "DataAreaDefault")
Dim c As FarPoint.Web.Spread.Cell
ns.Border = New FarPoint.Web.Spread.Border(Color.Red)
c = FpSpread1.ActiveSheetView.Cells(0, 0)
FpSpread1.NamedStyles.Add(ns)
c.ParentStyleName = "Style"
参照

Cell クラス
Cell メンバ

 

 


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