ComponentOne DataGrid for WPF and Silverlight
C1.Silverlight.DataGrid Namespace / C1DataGrid Class / LoadingRow Event

In This Topic
    LoadingRow Event (C1DataGrid)
    In This Topic
    Occurs when a data item is being loaded in the model This might happen both by bringing the row into view or requesting the row programmatically.
    Syntax
    'Declaration
     
    
    Public Event LoadingRow As EventHandler(Of DataGridRowEventArgs)
    public event EventHandler<DataGridRowEventArgs> LoadingRow
    Event Data

    The event handler receives an argument of type DataGridRowEventArgs containing data related to this event. The following DataGridRowEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the row.  
    Remarks
    Typically used to initialize properties for a particular row.
    See Also