FarPoint.Web.Spread 名前空間 > Appearance クラス : Reset メソッド |
'Declaration
Public Overridable Sub Reset( _ ByVal prop As AppearanceProperty _ )
public virtual void Reset( AppearanceProperty prop )
このメソッドは、Appearanceプロパティの1つをリセットするときに使用します。プロパティのリストについては、AppearancePropertyクラスのメンバ一覧を参照してください。
すべてのAppearanceプロパティをリセットするには、ResetAllメソッドを使用します。
FarPoint.Web.Spread.Appearance appearance = new FarPoint.Web.Spread.Appearance(); appearance.BackColor = Color.Red; Appearance.ForeColor = Color.Blue; private void Button1_Click(object sender, System.EventArgs e) { appearance.Reset(AppearanceProperty.BackColor); System.Diagnostics.Debug.Assert(Not appearance.IsDefined(AppearanceProperty.BackColor)); appearance.ResetAll(); System.Diagnostics.Debug.Assert(Not appearance.IsDefined(AppearanceProperty.ForeColor)); }
Dim appearance As New Appearance() appearance.BackColor = Color.Red appearance.ForeColor = Color.Blue Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click appearance.Reset(AppearanceProperty.BackColor) System.Diagnostics.Debug.Assert(Not appearance.IsDefined(AppearanceProperty.BackColor)) appearance.ResetAll() System.Diagnostics.Debug.Assert(Not appearance.IsDefined(AppearanceProperty.ForeColor)) End Sub