DataGridTextBoxColumn.PaintText Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Desenha o texto especificado e o retângulo ao redor do local especificado.
Sobrecargas
PaintText(Graphics, Rectangle, String, Boolean) |
Desenha o texto e o retângulo no local fornecido com o alinhamento especificado. |
PaintText(Graphics, Rectangle, String, Brush, Brush, Boolean) |
Desenha o texto e o retângulo no local especificado com as cores e o alinhamento indicados. |
PaintText(Graphics, Rectangle, String, Boolean)
Desenha o texto e o retângulo no local fornecido com o alinhamento especificado.
protected:
void PaintText(System::Drawing::Graphics ^ g, System::Drawing::Rectangle bounds, System::String ^ text, bool alignToRight);
protected void PaintText (System.Drawing.Graphics g, System.Drawing.Rectangle bounds, string text, bool alignToRight);
member this.PaintText : System.Drawing.Graphics * System.Drawing.Rectangle * string * bool -> unit
Protected Sub PaintText (g As Graphics, bounds As Rectangle, text As String, alignToRight As Boolean)
Parâmetros
- text
- String
A cadeia de caracteres a ser desenhada na tela.
- alignToRight
- Boolean
Um valor que indica se o texto é alinhado à direita.
Comentários
O PaintText método usa o DataFormats.Format conjunto de objetos com a Format propriedade para formatar o valor antes de desenhá-lo para a tela.
O Paint método chama o PaintText método .
Confira também
Aplica-se a
PaintText(Graphics, Rectangle, String, Brush, Brush, Boolean)
Desenha o texto e o retângulo no local especificado com as cores e o alinhamento indicados.
protected:
void PaintText(System::Drawing::Graphics ^ g, System::Drawing::Rectangle textBounds, System::String ^ text, System::Drawing::Brush ^ backBrush, System::Drawing::Brush ^ foreBrush, bool alignToRight);
protected void PaintText (System.Drawing.Graphics g, System.Drawing.Rectangle textBounds, string text, System.Drawing.Brush backBrush, System.Drawing.Brush foreBrush, bool alignToRight);
member this.PaintText : System.Drawing.Graphics * System.Drawing.Rectangle * string * System.Drawing.Brush * System.Drawing.Brush * bool -> unit
Protected Sub PaintText (g As Graphics, textBounds As Rectangle, text As String, backBrush As Brush, foreBrush As Brush, alignToRight As Boolean)
Parâmetros
- text
- String
A cadeia de caracteres a ser desenhada na tela.
- alignToRight
- Boolean
Um valor que indica se o texto é alinhado à direita.
Comentários
O PaintText método usa a Format propriedade para formatar o valor antes de desenhá-lo para a tela.
O Paint método chama o PaintText método .