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

現在のインスタンスのコピーである新しいオブジェクトを作成します (同じスタイル設定)。
構文
'Declaration
 
Public Overridable Function Clone() As Object
public virtual object Clone()

戻り値の型

StyleInfoオブジェクトのコピーを含むObject
この例では、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 = (FarPoint.Web.Spread.StyleInfo) info.Clone();
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 = info.Clone() 
FpSpread1.ActiveSheetView.SetStyleInfo(0, 0, cinfo) 
参照

StyleInfo クラス
StyleInfo メンバ

 

 


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