Xamarin.iOS Documentation | ComponentOne
C1.iOS.Grid Assembly / C1.iOS.Grid Namespace / GridBase Class / ScrollIntoView Method / ScrollIntoView(GridCellRange,Double,Boolean) Method
The range to scroll into view.
The distance in pixels between the range and the viewport border.
if set to true disable animations.


In This Topic
    ScrollIntoView(GridCellRange,Double,Boolean) Method
    In This Topic
    Scrolls the grid to bring a specified range into view.
    Syntax
    'Declaration
     
    
    Public Overloads Sub ScrollIntoView( _
       ByVal range As GridCellRange, _
       Optional ByVal padding As Double, _
       Optional ByVal disableAnimation As Boolean _
    ) 
    'Usage
     
    
    Dim instance As GridBase
    Dim range As GridCellRange
    Dim padding As Double
    Dim disableAnimation As Boolean
     
    instance.ScrollIntoView(range, padding, disableAnimation)
    public void ScrollIntoView( 
       GridCellRange range,
       double padding,
       bool disableAnimation
    )

    Parameters

    range
    The range to scroll into view.
    padding
    The distance in pixels between the range and the viewport border.
    disableAnimation
    if set to true disable animations.
    See Also