ComponentOne GridView for ASP.NET WebForms
C1.Web.Wijmo.Controls.4 Assembly / C1.Web.Wijmo.Controls.C1GridView Namespace / C1GridViewRowEventArgs Class
Members Example

In This Topic
    C1GridViewRowEventArgs Class
    In This Topic
    Provides data for the C1GridView.RowCreated and C1GridView.RowDataBound events.
    Object Model
    C1GridViewRowEventArgs Class
    Syntax
    'Declaration
     
    Public Class C1GridViewRowEventArgs 
       Inherits System.EventArgs
    public class C1GridViewRowEventArgs : System.EventArgs 
    Example
    protected void C1GridView1_RowDataBound(object sender, C1.Web.Wijmo.Controls.C1GridView.C1GridViewRowEventArgs e)
    {
       if (e.Row.Cells[0].Text == "Chang")
       {
          e.Row.Cells[0].ForeColor = System.Drawing.Color.Green;
       }
    }
    Inheritance Hierarchy

    System.Object
       System.EventArgs
          C1.Web.Wijmo.Controls.C1GridView.C1GridViewRowEventArgs

    See Also