DataGridColumnStyle.Paint Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- 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
- 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
- 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.
- alignToRight
- Boolean
A value indicating whether to align the content to the right. true
if the content is aligned to the right, otherwise, false
.