DrawItemEventArgs Constructores

Definición

Inicializa una nueva instancia de la clase DrawItemEventArgs.

Sobrecargas

DrawItemEventArgs(Graphics, Font, Rectangle, Int32, DrawItemState)

Inicializa una nueva instancia de la clase DrawItemEventArgs para el control especificado con la fuente, el estado, la superficie en la que dibujar y los límites en los que se puede dibujar especificados.

DrawItemEventArgs(Graphics, Font, Rectangle, Int32, DrawItemState, Color, Color)

Inicializa una nueva instancia de la clase DrawItemEventArgs para el control especificado con la fuente, el estado, el color de fondo y de primer plano, la superficie en la que dibujar y los límites en los que se puede dibujar especificados.

DrawItemEventArgs(Graphics, Font, Rectangle, Int32, DrawItemState)

Inicializa una nueva instancia de la clase DrawItemEventArgs para el control especificado con la fuente, el estado, la superficie en la que dibujar y los límites en los que se puede dibujar especificados.

public:
 DrawItemEventArgs(System::Drawing::Graphics ^ graphics, System::Drawing::Font ^ font, System::Drawing::Rectangle rect, int index, System::Windows::Forms::DrawItemState state);
public DrawItemEventArgs (System.Drawing.Graphics graphics, System.Drawing.Font font, System.Drawing.Rectangle rect, int index, System.Windows.Forms.DrawItemState state);
public DrawItemEventArgs (System.Drawing.Graphics graphics, System.Drawing.Font? font, System.Drawing.Rectangle rect, int index, System.Windows.Forms.DrawItemState state);
new System.Windows.Forms.DrawItemEventArgs : System.Drawing.Graphics * System.Drawing.Font * System.Drawing.Rectangle * int * System.Windows.Forms.DrawItemState -> System.Windows.Forms.DrawItemEventArgs
Public Sub New (graphics As Graphics, font As Font, rect As Rectangle, index As Integer, state As DrawItemState)

Parámetros

graphics
Graphics

Superficie Graphics en la que se va a dibujar.

font
Font

Font que se va a usar; normalmente, es la propiedad Font del control primario.

rect
Rectangle

Límites del objeto Rectangle donde se puede dibujar.

index
Int32

Valor de índice de Control.ControlCollection del elemento que se va a dibujar.

state
DrawItemState

Información de DrawItemState acerca del control.

Se aplica a

DrawItemEventArgs(Graphics, Font, Rectangle, Int32, DrawItemState, Color, Color)

Inicializa una nueva instancia de la clase DrawItemEventArgs para el control especificado con la fuente, el estado, el color de fondo y de primer plano, la superficie en la que dibujar y los límites en los que se puede dibujar especificados.

public:
 DrawItemEventArgs(System::Drawing::Graphics ^ graphics, System::Drawing::Font ^ font, System::Drawing::Rectangle rect, int index, System::Windows::Forms::DrawItemState state, System::Drawing::Color foreColor, System::Drawing::Color backColor);
public DrawItemEventArgs (System.Drawing.Graphics graphics, System.Drawing.Font font, System.Drawing.Rectangle rect, int index, System.Windows.Forms.DrawItemState state, System.Drawing.Color foreColor, System.Drawing.Color backColor);
public DrawItemEventArgs (System.Drawing.Graphics graphics, System.Drawing.Font? font, System.Drawing.Rectangle rect, int index, System.Windows.Forms.DrawItemState state, System.Drawing.Color foreColor, System.Drawing.Color backColor);
new System.Windows.Forms.DrawItemEventArgs : System.Drawing.Graphics * System.Drawing.Font * System.Drawing.Rectangle * int * System.Windows.Forms.DrawItemState * System.Drawing.Color * System.Drawing.Color -> System.Windows.Forms.DrawItemEventArgs
Public Sub New (graphics As Graphics, font As Font, rect As Rectangle, index As Integer, state As DrawItemState, foreColor As Color, backColor As Color)

Parámetros

graphics
Graphics

Superficie Graphics en la que se va a dibujar.

font
Font

Font que se va a usar; normalmente, es la propiedad Font del control primario.

rect
Rectangle

Límites del objeto Rectangle donde se puede dibujar.

index
Int32

Valor de índice de Control.ControlCollection del elemento que se va a dibujar.

state
DrawItemState

Información de DrawItemState acerca del control.

foreColor
Color

Color del primer plano con el que se dibuja el control.

backColor
Color

Color de fondo con el que se dibuja el control.

Se aplica a