'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.
Property | Description |
---|---|
ClipBounds | Gets or sets the area of the System.Windows.Forms.DataGridView that needs to be repainted. |
ErrorText | Gets a string that represents an error message for the current System.Windows.Forms.DataGridViewRow. |
Graphics | Gets the System.Drawing.Graphics used to paint the current System.Windows.Forms.DataGridViewRow. |
InheritedRowStyle | Gets the cell style applied to the current System.Windows.Forms.DataGridViewRow. |
IsFirstDisplayedRow | Gets a value indicating whether the current row is the first row displayed in the System.Windows.Forms.DataGridView. |
IsLastVisibleRow | Gets a value indicating whether the current row is the last visible row displayed in the System.Windows.Forms.DataGridView. |
RowBounds | Get the bounds of the current System.Windows.Forms.DataGridViewRow. |
RowIndex | Gets the index of the current System.Windows.Forms.DataGridViewRow. |
State | 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