DataGridViewRowPostPaintEventArgs::Graphics Property

 

Gets the Graphics used to paint the current DataGridViewRow.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
property Graphics^ Graphics {
	Graphics^ get();
}

Property Value

Type: System.Drawing::Graphics^

The Graphics used to paint the current DataGridViewRow.

The Graphics class provides properties and methods that are useful for custom drawing.

The following code example demonstrates how to use the Graphics property to paint a custom background. Although the code actually uses the DataGridViewRowPrePaintEventArgs::Graphics property, this property is nearly identical to the Graphics property of DataGridViewRowPostPaintEventArgs. The variable, e, is of type DataGridViewRowPrePaintEventArgs. This code example is part of a larger example provided in How to: Customize the Appearance of Rows in the Windows Forms DataGridView Control.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: