FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > SpreadView クラス : 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)
このメソッドが返すのはシートの列ヘッダ内のセル矩形情報のみで、データ領域のセルやシートの隅、または SPREADのその他の部分については、セル矩形情報は返されません。データ領域のセルについては、GetCellRectangle メソッドを使用してください。行ヘッダ内のセルについては、GetRowHeaderCellRectangle メソッドを使用してください。
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))