PowerTools SPREAD for Windows Forms 8.0J
ParentStyleName プロパティ (Cell)


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

プロパティ値

親スタイルの名前を含む String
次のサンプルコードでは、このメンバを使用して、セルのParentStyleNameを返しています。
FarPoint.Win.Spread.Cell acell;
acell = fpSpread1.ActiveSheet.Cells[0, 0];
acell.ParentStyleName = "DataAreaDefault";
Dim acell As FarPoint.Win.Spread.Cell
acell = FpSpread1.ActiveSheet.Cells(0, 0)
acell.ParentStyleName = "DataAreaDefault"
参照

Cell クラス
Cell メンバ
StyleName プロパティ

 

 


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