PowerTools SPREAD for ASP.NET 8.0J
Compose(StyleInfo,Boolean) メソッド

スタイル設定のコピー元のStyleInfoオブジェクト
現在の設定をソースオブジェクトの設定で上書きするかどうかを表すブール値
現在のスタイル設定と指定したオブジェクトのスタイル設定を使用して、 スタイル設定を構成します。現在のスタイル設定を上書きするオプションを指定できます。
構文
'Declaration
 
Public Overloads Overridable Sub Compose( _
   ByVal source As StyleInfo, _
   ByVal force As Boolean _
) 
public virtual void Compose( 
   StyleInfo source,
   bool force
)

パラメータ

source
スタイル設定のコピー元のStyleInfoオブジェクト
force
現在の設定をソースオブジェクトの設定で上書きするかどうかを表すブール値
解説
forceをTrueに設定すると、現在の設定を上書きします。
この例では、2つのStyleInfoオブジェクトを作成し、2番目のインスタンスを1番目のインスタンスから構成します。次に、2番目のインスタンスにアクティブシートに割り当てます。
FarPoint.Web.Spread.StyleInfo info = new FarPoint.Web.Spread.StyleInfo();
FarPoint.Web.Spread.StyleInfo cinfo = new FarPoint.Web.Spread.StyleInfo();
FarPoint.Web.Spread.Border bord = new FarPoint.Web.Spread.Border(BorderStyle.Double, Color.Red, 3);
FarPoint.Web.Spread.Border bord1 = new FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.Yellow, 3);
info.Border = bord;
info.CellType = new FarPoint.Web.Spread.LabelCellType();
cinfo.Border = bord1;
cinfo.CellType = new FarPoint.Web.Spread.ButtonCellType();
cinfo.Compose(info, true);
FpSpread1.ActiveSheetView.SetStyleInfo(0, 0, cinfo); 
Dim info As New FarPoint.Web.Spread.StyleInfo()
Dim cinfo As New FarPoint.Web.Spread.StyleInfo()
Dim bord As New FarPoint.Web.Spread.Border(BorderStyle.Double, Color.Red, 3)
Dim bord1 As New FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.Yellow, 3)
info.Border = bord
info.CellType = New FarPoint.Web.Spread.LabelCellType()
cinfo.Border = bord1
cinfo.CellType = New FarPoint.Web.Spread.ButtonCellType()
cinfo.Compose(info, True)
FpSpread1.ActiveSheetView.SetStyleInfo(0, 0, cinfo) 
参照

StyleInfo クラス
StyleInfo メンバ
オーバーロード一覧

 

 


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