ComponentOne DataGrid for WPF and Silverlight
C1.WPF.DataGrid Namespace / C1DataGrid Class / Reload Method
If true, the columns will be reloaded, otherwise the columns won't be reloaded

In This Topic
    Reload Method
    In This Topic
    Reloads the content of the grid by bringing all the information again from the inner System.ComponentModel.ICollectionView.
    Syntax
    'Declaration
     
    
    Public Function Reload( _
       ByVal createColumns As Boolean _
    ) As Boolean
    public bool Reload( 
       bool createColumns
    )

    Parameters

    createColumns
    If true, the columns will be reloaded, otherwise the columns won't be reloaded
    Remarks
    This method is typically used when the data source changed in an unnoticeable way to the C1DataGrid. e.g. when the ItemsSource is a List and a row is added directly to the list.
    See Also