PowerTools SPREAD for ASP.NET 8.0J
Reset メソッド (Border)

BorderPropertyクラスの設定
指定した罫線プロパティをデフォルト設定にリセットします。
構文
'Declaration
 
Public Overridable Sub Reset( _
   ByVal prop As BorderProperty _
) 
public virtual void Reset( 
   BorderProperty prop
)

パラメータ

prop
BorderPropertyクラスの設定
解説

このメソッドは、任意のプロパティの設定を「Not Set」にリセットするときに使用します。プロパティのリストについては、Borderクラスのメンバのページを参照してください。

すべての境界線のプロパティをリセットする場合、ResetAllメソッドを使用します。

この例では、Borderオブジェクトを作成し、いくつかのプロパティを設定した後、ButtonClickイベントでBorderColorBottomプロパティをデフォルト値にリセットします。
FarPoint.Web.Spread.Border border = new FarPoint.Web.Spread.Border();
FarPoint.Web.Spread.Cell acell;
acell = FpSpread1.Cells[0, 0];
border.BorderColorBottom = Color.Red;
border.BorderColorRight = Color.Green;
border.BorderSize = 2;
acell.Border = border;

private void Button1_Click(object sender, System.EventArgs e)
{
    border.Reset(FarPoint.Web.Spread.BorderProperty.BorderColorBottom);
}
Dim border As New FarPoint.Web.Spread.Border()
Dim acell As FarPoint.Web.Spread.Cell
acell = FpSpread1.Cells(0, 0)
border.BorderColorBottom = Color.Red
border.BorderColorRight = Color.Green
border.BorderSize = 2
acell.Border = border
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    border.Reset(FarPoint.Web.Spread.BorderProperty.BorderColorBottom)
End Sub
参照

Border クラス
Border メンバ
ResetAll メソッド

 

 


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