PowerTools SPREAD for Windows Forms 8.0J
Parent プロパティ (StyleInfo)


スタイルの親(NamedStyleオブジェクト)の名前を取得または設定します。
構文
'Declaration
 
Public Overridable Property Parent As String
'使用法
 
Dim instance As StyleInfo
Dim value As String
 
instance.Parent = value
 
value = instance.Parent
public virtual string Parent {get; set;}

プロパティ値

親の名前を含む String
解説

親StyleInfoは、Composeメソッドでスタイルプロパティをマージするのに使用します。

FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo();
DialogResult dlg;
si.Parent = "DataAreaDefault";
fpSpread1.ActiveSheet.DefaultStyle = si;
dlg = MessageBox.Show("Reset the parent?");
if (dlg == DialogResult.OK)
{
si.ResetParent();
fpSpread1.ActiveSheet.DefaultStyle = si;
}
Dim si As New FarPoint.Win.Spread.StyleInfo
Dim dlg As DialogResult
si.Parent = "DataAreaDefault"
FpSpread1.ActiveSheet.DefaultStyle = si
dlg = MessageBox.Show("Reset the parent?")
If dlg = DialogResult.OK Then
si.ResetParent()
FpSpread1.ActiveSheet.DefaultStyle = si
End If
参照

StyleInfo クラス
StyleInfo メンバ

 

 


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