PowerTools SPREAD for ASP.NET 8.0J
Merge(Object) メソッド

現在の境界線と設定をマージするオブジェクト
指定した Border オブジェクトの設定を現在の境界線とマージします。
構文
'Declaration
 
Public Overloads Overridable Function Merge( _
   ByVal o As Object _
) As Boolean
public virtual bool Merge( 
   object o
)

パラメータ

o
現在の境界線と設定をマージするオブジェクト

戻り値の型

成功した場合は True、それ以外の場合は False
解説

各Border設定は、設定が現在のオブジェクトで定義されていない場合のみ指定したオブジェクトから現在のオブジェクトにコピーされます。

設定が現在のオブジェクトで定義されている場合でも設定をマージする場合は、Merge(Object,Boolean)メソッドを使用します。

この例では、2つのBorderオブジェクトを作成し、1番目のオブジェクトの設定を2番目のオブジェクトの設定にマージし、それらの設定をCellオブジェクトのインスタンスに適用します。
FarPoint.Web.Spread.Border border = new FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.Red, 2);
FarPoint.Web.Spread.Border cloneborder = new FarPoint.Web.Spread.Border();
FarPoint.Web.Spread.Cell acell;
acell = FpSpread1.Cells[0, 0];
cloneborder.Merge(border);
acell.Border = cloneborder;
Dim border As New FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.Red, 2)
Dim cloneborder As New FarPoint.Web.Spread.Border()
Dim acell As FarPoint.Web.Spread.Cell
acell = FpSpread1.Cells(0, 0)
cloneborder.Merge(border)
acell.Border = cloneborder
参照

Border クラス
Border メンバ
オーバーロード一覧
Merge(Object,Boolean) Method

 

 


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