DataGridColumnStyle.Paint Method

Definition

When overridden in a derived class, paints the column in a DataGrid control.

Overloads

Paint(Graphics, Rectangle, CurrencyManager, Int32)

Paints the DataGridColumnStyle with the specified Graphics, Rectangle, CurrencyManager, and row number.

Paint(Graphics, Rectangle, CurrencyManager, Int32, Boolean)

When overridden in a derived class, paints a DataGridColumnStyle with the specified Graphics, Rectangle, CurrencyManager, row number, and alignment.

Paint(Graphics, Rectangle, CurrencyManager, Int32, Brush, Brush, Boolean)

Paints a DataGridColumnStyle with the specified Graphics, Rectangle, CurrencyManager, row number, background color, foreground color, and alignment.

Paint(Graphics, Rectangle, CurrencyManager, Int32)

Paints the DataGridColumnStyle with the specified Graphics, Rectangle, CurrencyManager, and row number.

protected public:
 abstract void Paint(System::Drawing::Graphics ^ g, System::Drawing::Rectangle bounds, System::Windows::Forms::CurrencyManager ^ source, int rowNum);
protected internal abstract void Paint (System.Drawing.Graphics g, System.Drawing.Rectangle bounds, System.Windows.Forms.CurrencyManager source, int rowNum);
abstract member Paint : System.Drawing.Graphics * System.Drawing.Rectangle * System.Windows.Forms.CurrencyManager * int -> unit
Protected Friend MustOverride Sub Paint (g As Graphics, bounds As Rectangle, source As CurrencyManager, rowNum As Integer)

Parameters

g
Graphics

The Graphics to draw to.

bounds
Rectangle

The bounding Rectangle to paint into.

source
CurrencyManager

The CurrencyManager of the DataGrid control the column belongs to.

rowNum
Int32

The number of the row in the underlying data being referred to.

Applies to

Paint(Graphics, Rectangle, CurrencyManager, Int32, Boolean)

When overridden in a derived class, paints a DataGridColumnStyle with the specified Graphics, Rectangle, CurrencyManager, row number, and alignment.

protected public:
 abstract void Paint(System::Drawing::Graphics ^ g, System::Drawing::Rectangle bounds, System::Windows::Forms::CurrencyManager ^ source, int rowNum, bool alignToRight);
protected internal abstract void Paint (System.Drawing.Graphics g, System.Drawing.Rectangle bounds, System.Windows.Forms.CurrencyManager source, int rowNum, bool alignToRight);
abstract member Paint : System.Drawing.Graphics * System.Drawing.Rectangle * System.Windows.Forms.CurrencyManager * int * bool -> unit
Protected Friend MustOverride Sub Paint (g As Graphics, bounds As Rectangle, source As CurrencyManager, rowNum As Integer, alignToRight As Boolean)

Parameters

g
Graphics

The Graphics to draw to.

bounds
Rectangle

The bounding Rectangle to paint into.

source
CurrencyManager

The CurrencyManager of the DataGrid control the column belongs to.

rowNum
Int32

The number of the row in the underlying data being referred to.

alignToRight
Boolean

A value indicating whether to align the column's content to the right. true if the content should be aligned to the right; otherwise false.

Applies to

Paint(Graphics, Rectangle, CurrencyManager, Int32, Brush, Brush, Boolean)

Paints a DataGridColumnStyle with the specified Graphics, Rectangle, CurrencyManager, row number, background color, foreground color, and alignment.

protected public:
 virtual void Paint(System::Drawing::Graphics ^ g, System::Drawing::Rectangle bounds, System::Windows::Forms::CurrencyManager ^ source, int rowNum, System::Drawing::Brush ^ backBrush, System::Drawing::Brush ^ foreBrush, bool alignToRight);
protected internal virtual void Paint (System.Drawing.Graphics g, System.Drawing.Rectangle bounds, System.Windows.Forms.CurrencyManager source, int rowNum, System.Drawing.Brush backBrush, System.Drawing.Brush foreBrush, bool alignToRight);
abstract member Paint : System.Drawing.Graphics * System.Drawing.Rectangle * System.Windows.Forms.CurrencyManager * int * System.Drawing.Brush * System.Drawing.Brush * bool -> unit
override this.Paint : System.Drawing.Graphics * System.Drawing.Rectangle * System.Windows.Forms.CurrencyManager * int * System.Drawing.Brush * System.Drawing.Brush * bool -> unit
Protected Friend Overridable Sub Paint (g As Graphics, bounds As Rectangle, source As CurrencyManager, rowNum As Integer, backBrush As Brush, foreBrush As Brush, alignToRight As Boolean)

Parameters

g
Graphics

The Graphics to draw to.

bounds
Rectangle

The bounding Rectangle to paint into.

source
CurrencyManager

The CurrencyManager of the DataGrid control the column belongs to.

rowNum
Int32

The number of the row in the underlying data table being referred to.

backBrush
Brush

A Brush used to paint the background color.

foreBrush
Brush

A Color used to paint the foreground color.

alignToRight
Boolean

A value indicating whether to align the content to the right. true if the content is aligned to the right, otherwise, false.

Applies to