Xamarin.iOS Documentation | ComponentOne
C1.iOS.Grid Assembly / C1.iOS.Grid Namespace / FlexGrid Class / AutoSizeRows Method
Index of the first row to resize.
Index of the last row to resize.
Whether the row indexes refers to regular or header column rows.


In This Topic
    AutoSizeRows Method
    In This Topic
    Resizes a row range to fit their visible contents.
    Syntax
    'Declaration
     
    
    Public Sub AutoSizeRows( _
       ByVal startRow As Integer, _
       ByVal endRow As Integer, _
       Optional ByVal header As Boolean _
    ) 
    'Usage
     
    
    Dim instance As FlexGrid
    Dim startRow As Integer
    Dim endRow As Integer
    Dim header As Boolean
     
    instance.AutoSizeRows(startRow, endRow, header)
    public void AutoSizeRows( 
       int startRow,
       int endRow,
       bool header
    )

    Parameters

    startRow
    Index of the first row to resize.
    endRow
    Index of the last row to resize.
    header
    Whether the row indexes refers to regular or header column rows.
    See Also