FarPoint.Win.Spread アセンブリ > FarPoint.Win.Spread 名前空間 > FpSpread クラス : GetCellRectangle メソッド |
'宣言
Public Function GetCellRectangle( _ ByVal rowViewportIndex As Integer, _ ByVal columnViewportIndex As Integer, _ ByVal row As Integer, _ ByVal column As Integer _ ) As Rectangle
public Rectangle GetCellRectangle( int rowViewportIndex, int columnViewportIndex, int row, int column )
このメソッドは、SPREADに表示されたセルの範囲に対する任意のセルの相対的な位置を特定する場合に使用します。たとえば、一度に 10 行を表示する SPREADがあり、それに 500 行のデータ ソースを連結しているとします。ここで、ユーザーが 235 番目の行を表示する位置にスクロールした場合、このメソッドを使用することで、データ ソースの全 500 行のうちの 10 行を表示しているビュー ウィンドウの上端を基準とする、235 番目の行の相対的なピクセル位置を正確に特定できます。
Rectangle r; r = fpSpread1.GetCellRectangle(0, 0, 2, 2); MessageBox.Show(r.Left.ToString());
Dim r As Rectangle r = FpSpread1.GetCellRectangle(0, 0, 2, 2) MessageBox.Show(r.Left.ToString())