GrapeCity SPREAD for Windows Forms 12.0J
GetColumnHeaderCellRectangle メソッド


ビューポート列のインデックス
セルの行インデックス
セルの列インデックス
列ヘッダのセルの矩形を取得します。
構文
'Declaration
 
Public Function GetColumnHeaderCellRectangle( _
   ByVal columnViewportIndex As Integer, _
   ByVal row As Integer, _
   ByVal column As Integer _
) As Rectangle
'使用法
 
Dim instance As SpreadView
Dim columnViewportIndex As Integer
Dim row As Integer
Dim column As Integer
Dim value As Rectangle
 
value = instance.GetColumnHeaderCellRectangle(columnViewportIndex, row, column)
public Rectangle GetColumnHeaderCellRectangle( 
   int columnViewportIndex,
   int row,
   int column
)

パラメータ

columnViewportIndex
ビューポート列のインデックス
row
セルの行インデックス
column
セルの列インデックス

戻り値の型

セルの矩形を含む Rectangle オブジェクト
解説

このメソッドが返すのはシートの列ヘッダ内のセル矩形情報のみで、データ領域のセルやシートの隅、または SPREADのその他の部分については、セル矩形情報は返されません。データ領域のセルについては、GetCellRectangle メソッドを使用してください。行ヘッダ内のセルについては、GetRowHeaderCellRectangle メソッドを使用してください。

次のサンプルコードは、GetColumnHeaderCellRectangleメソッドを使用します。
FarPoint.Win.Spread.SpreadView sv;            
sv = fpSpread1.GetRootWorkbook();
listBox1.Items.Add(sv.GetColumnHeaderCellRectangle(0, 0, 0));
Dim sv As FarPoint.Win.Spread.SpreadView
sv = FpSpread1.GetRootWorkbook()
ListBox1.Items.Add(sv.GetColumnHeaderCellRectangle(0, 0, 0))
参照

SpreadView クラス
SpreadView メンバ

開発者ガイド

セルのクリック時の情報

 

 


Copyright © 2004 GrapeCity inc.