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

StyleInfoオブジェクト
現在のスタイル設定と指定したオブジェクトのスタイル設定を使用して、 スタイル設定を構成します。
構文
'Declaration
 
Public Overloads Overridable Sub Compose( _
   ByVal source As StyleInfo _
) 
public virtual void Compose( 
   StyleInfo source
)

パラメータ

source
StyleInfoオブジェクト
この例では、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);
info.Border = bord;
info.CellType = new FarPoint.Web.Spread.LabelCellType();
cinfo.Compose(info);
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)
info.Border = bord
info.CellType = New FarPoint.Web.Spread.LabelCellType()
cinfo.Compose(info)
FpSpread1.ActiveSheetView.SetStyleInfo(0, 0, cinfo) 
参照

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

 

 


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