Nevron .NET Vision
Nevron.UI.WinForm.Controls Namespace / NDataGridView Class / RowPostPaint Event


In This Topic
    RowPostPaint Event
    In This Topic
    Syntax
    'Declaration
     
    
    <SRCategoryAttribute("CatDisplay")>
    <SRDescriptionAttribute("DataGridView_RowPostPaintDescr")>
    Public Event RowPostPaint As System.Windows.Forms.DataGridViewRowPostPaintEventHandler
    'Usage
     
    
    Dim instance As NDataGridView
    Dim handler As System.Windows.Forms.DataGridViewRowPostPaintEventHandler
     
    AddHandler instance.RowPostPaint, handler
    [SRCategory("CatDisplay")]
    [SRDescription("DataGridView_RowPostPaintDescr")]
    public event System.Windows.Forms.DataGridViewRowPostPaintEventHandler RowPostPaint
    Event Data

    The event handler receives an argument of type System.Windows.Forms.DataGridViewRowPostPaintEventArgs containing data related to this event. The following DataGridViewRowPostPaintEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets or sets the area of the System.Windows.Forms.DataGridView that needs to be repainted.  
    Gets a string that represents an error message for the current System.Windows.Forms.DataGridViewRow.  
    Gets the System.Drawing.Graphics used to paint the current System.Windows.Forms.DataGridViewRow.  
    Gets the cell style applied to the current System.Windows.Forms.DataGridViewRow.  
    Gets a value indicating whether the current row is the first row displayed in the System.Windows.Forms.DataGridView.  
    Gets a value indicating whether the current row is the last visible row displayed in the System.Windows.Forms.DataGridView.  
    Get the bounds of the current System.Windows.Forms.DataGridViewRow.  
    Gets the index of the current System.Windows.Forms.DataGridViewRow.  
    Gets the state of the current System.Windows.Forms.DataGridViewRow.  
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also