FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > Row クラス : ParentStyleName プロパティ |
'Declaration
Public Property ParentStyleName As String
'使用法
Dim instance As Row Dim value As String instance.ParentStyleName = value value = instance.ParentStyleName
public string ParentStyleName {get; set;}
このプロパティは、親スタイル(NamedStyleオブジェクト)の名前を文字列で取得または設定します。
FarPoint.Win.Spread.Row r; r = fpSpread1.ActiveSheet.Rows[0]; r.ParentStyleName = "Parent"; r.StyleName = "Style";
Dim r As FarPoint.Win.Spread.Row r = FpSpread1.ActiveSheet.Rows(0) r.ParentStyleName = "Parent" r.StyleName = "Style"