FlexPivot for WinForms
ScrollPosition プロパティ (ScrollableControl)
使用例 

C1.Win.C1FlexGrid.4.5.2 アセンブリ > C1.Win.C1FlexGrid.Util.BaseControls 名前空間 > ScrollableControl クラス : ScrollPosition プロパティ
Gets or sets the location of the auto-scroll position.
シンタックス
'宣言
 
Public Property ScrollPosition As System.Drawing.Point
public System.Drawing.Point ScrollPosition {get; set;}
解説

Use the ScrollPosition property to get or set the scroll position using pixel coordinates.

Use the TopRow and LeftCol properties to get or set the scroll position using cell coordinates.

使用例
This code binds two grids (_flexLeft and _flexRight) together and synchronizes their scrolling in the vertical direction (the user can scroll the grids independently in the horizontal direction).
// bind grids together
_flexRight.DataSource = _flexLeft;
_flexLeft.ScrollBars = ScrollBars.Horizontal;
            
// synchronize vertical scrolling 
// (this handles the AfterScroll event for both grids)
void flex_AfterScroll(object sender, C1.Win.C1FlexGrid.RangeEventArgs e)
{
    // update sender grid (could be _flexLeft or _flexRight)
    C1FlexGrid.C1FlexGrid src = ((C1FlexGrid)sender);
    src.Update();
    
    // get new vertical position from sender grid
    int y = src.ScrollPosition.Y;
    
    // apply new vertical position to the other grid
    if (src.Equals == _flexLeft)
    {
        _flexRight.ScrollPosition = new Point(_flexRight.ScrollPosition.X, y);
    }
    else
    {
        _flexLeft.ScrollPosition = new Point(_flexLeft.ScrollPosition.X, y);
    }
}
参照

ScrollableControl クラス
ScrollableControl メンバ