PowerTools SPREAD for Windows Forms 8.0J
GetStyleInfo(Int32,Int32) メソッド


行インデックス
列インデックス
シートの指定したセルのスタイル情報を取得します。
構文
'Declaration
 
Public Overloads Overridable Function GetStyleInfo( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As StyleInfo
'使用法
 
Dim instance As SheetView
Dim row As Integer
Dim column As Integer
Dim value As StyleInfo
 
value = instance.GetStyleInfo(row, column)
public virtual StyleInfo GetStyleInfo( 
   int row,
   int column
)

パラメータ

row
行インデックス
column
列インデックス

戻り値の型

セルの複合スタイル情報を含むStyleInfoオブジェクト
解説
このメソッドは、新しいStyleInfoオブジェクトを作成して返します。使用するStyleInfoオブジェクトを渡す場合は、GetStyleInfo(Int32,Int32,StyleInfo)メソッドを使用してください。
FarPoint.Win.Spread.SheetView sv;
FarPoint.Win.Spread.StyleInfo si;
FarPoint.Win.Spread.StyleInfo si2;
si.BackColor = Color.LightBlue;
sv = fpSpread1.ActiveSheet;
sv.SetStyleInfo(0, 0, si);
si2 = fpSpread1.ActiveSheet.GetStyleInfo(0, 0);
MessageBox.Show("The backcolor of the style info is " + si2.BackColor.ToString());
Dim sv As FarPoint.Win.Spread.SheetView
Dim si As New FarPoint.Win.Spread.StyleInfo
Dim si2 As FarPoint.Win.Spread.StyleInfo
si.BackColor = Color.LightBlue
sv = FpSpread1.ActiveSheet
sv.SetStyleInfo(0, 0, si)
si2 = FpSpread1.ActiveSheet.GetStyleInfo(0, 0)
MessageBox.Show("The backcolor of the style info is " & si2.BackColor.ToString())
参照

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

 

 


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