MESCIUS SPREAD for ASP.NET 10.0J
Equals メソッド (SheetSkin)

比較するオブジェクト
指定したオブジェクトがこのスキンと等しいかどうかを示す値を返します。
構文
'Declaration
 
Public Overrides Function Equals( _
   ByVal o As Object _
) As Boolean
public override bool Equals( 
   object o
)

パラメータ

o
比較するオブジェクト

戻り値の型

スキンがが等しい場合はtrue、それ以外の場合はfalse
この例では、あるスキンが別のスキンと等しいかどうかを問い合わせます。
FarPoint.Web.Spread.SheetSkin sk = new FarPoint.Web.Spread.SheetSkin("TestSkin", Color.LightGoldenrodYellow, Color.Wheat,
Color.DarkGreen, 2, Color.YellowGreen, GridLines.Both, Color.Thistle, Color.BlanchedAlmond, Color.Wheat, Color.DarkBlue, Color.Empty,
Color.Empty, false, false, true, true, true);

    FarPoint.Web.Spread.SheetSkin testskin = new FarPoint.Web.Spread.SheetSkin(sk);
    bool b;
    if(IsPostBack)
    {
        b = testskin.Equals(sk);
        if (b)
        {
            testskin.Apply(FpSpread1);
        }
    }
Dim sk As New FarPoint.Web.Spread.SheetSkin("TestSkin", Color.LightGoldenrodYellow, Color.Wheat, Color.DarkGreen, 2, Color.YellowGreen,
GridLines.Both, Color.Thistle, Color.BlanchedAlmond, Color.Wheat, Color.DarkBlue, Nothing, Nothing, False, False, True, True,
True)

Dim testskin As New FarPoint.Web.Spread.SheetSkin(sk)
Dim b As Boolean
If IsPostBack Then
    b = testskin.Equals(sk)
    If b Then
        testskin.Apply(FpSpread1)
    End If
End If
参照

SheetSkin クラス
SheetSkin メンバ

 

 


© MESCIUS inc. All rights reserved.