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

スタイル設定のコピー元のStyleInfoオブジェクト
指定したオブジェクトのスタイル設定を現在のオブジェクトにコピーします。
構文
'Declaration
 
Public Overridable Sub CopyFrom( _
   ByVal obj As Object _
) 
public virtual void CopyFrom( 
   object obj
)

パラメータ

obj
スタイル設定のコピー元の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);
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.CopyFrom(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)
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.CopyFrom(info)
FpSpread1.ActiveSheetView.SetStyleInfo(0, 0, cinfo) 
参照

StyleInfo クラス
StyleInfo メンバ

 

 


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