VisualStyleRenderer.DrawText Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Dibuja el texto en los límites especificados.
Sobrecargas
DrawText(IDeviceContext, Rectangle, String, Boolean, TextFormatFlags) |
Dibuja el texto en el rectángulo delimitador especificado con la opción de mostrar texto deshabilitado y aplicar otro formato de texto. |
DrawText(IDeviceContext, Rectangle, String) |
Dibuja el texto en los límites especificados utilizando el formato predeterminado. |
DrawText(IDeviceContext, Rectangle, String, Boolean) |
Dibuja el texto en los límites especificados con la opción de mostrar el texto deshabilitado. |
DrawText(IDeviceContext, Rectangle, String, Boolean, TextFormatFlags)
Dibuja el texto en el rectángulo delimitador especificado con la opción de mostrar texto deshabilitado y aplicar otro formato de texto.
public:
void DrawText(System::Drawing::IDeviceContext ^ dc, System::Drawing::Rectangle bounds, System::String ^ textToDraw, bool drawDisabled, System::Windows::Forms::TextFormatFlags flags);
public void DrawText (System.Drawing.IDeviceContext dc, System.Drawing.Rectangle bounds, string textToDraw, bool drawDisabled, System.Windows.Forms.TextFormatFlags flags);
public void DrawText (System.Drawing.IDeviceContext dc, System.Drawing.Rectangle bounds, string? textToDraw, bool drawDisabled, System.Windows.Forms.TextFormatFlags flags);
member this.DrawText : System.Drawing.IDeviceContext * System.Drawing.Rectangle * string * bool * System.Windows.Forms.TextFormatFlags -> unit
Public Sub DrawText (dc As IDeviceContext, bounds As Rectangle, textToDraw As String, drawDisabled As Boolean, flags As TextFormatFlags)
Parámetros
Objeto IDeviceContext que se utiliza para dibujar el texto.
- textToDraw
- String
Texto que se va a trazar.
- drawDisabled
- Boolean
true
para dibujar el texto atenuado; de lo contrario, false
.
- flags
- TextFormatFlags
Combinación bit a bit de los valores de TextFormatFlags.
Excepciones
dc
es null
.
Se aplica a
DrawText(IDeviceContext, Rectangle, String)
Dibuja el texto en los límites especificados utilizando el formato predeterminado.
public:
void DrawText(System::Drawing::IDeviceContext ^ dc, System::Drawing::Rectangle bounds, System::String ^ textToDraw);
public void DrawText (System.Drawing.IDeviceContext dc, System.Drawing.Rectangle bounds, string textToDraw);
public void DrawText (System.Drawing.IDeviceContext dc, System.Drawing.Rectangle bounds, string? textToDraw);
member this.DrawText : System.Drawing.IDeviceContext * System.Drawing.Rectangle * string -> unit
Public Sub DrawText (dc As IDeviceContext, bounds As Rectangle, textToDraw As String)
Parámetros
Objeto IDeviceContext que se utiliza para dibujar el texto.
- textToDraw
- String
Texto que se va a trazar.
Excepciones
dc
es null
.
Se aplica a
DrawText(IDeviceContext, Rectangle, String, Boolean)
Dibuja el texto en los límites especificados con la opción de mostrar el texto deshabilitado.
public:
void DrawText(System::Drawing::IDeviceContext ^ dc, System::Drawing::Rectangle bounds, System::String ^ textToDraw, bool drawDisabled);
public void DrawText (System.Drawing.IDeviceContext dc, System.Drawing.Rectangle bounds, string textToDraw, bool drawDisabled);
public void DrawText (System.Drawing.IDeviceContext dc, System.Drawing.Rectangle bounds, string? textToDraw, bool drawDisabled);
member this.DrawText : System.Drawing.IDeviceContext * System.Drawing.Rectangle * string * bool -> unit
Public Sub DrawText (dc As IDeviceContext, bounds As Rectangle, textToDraw As String, drawDisabled As Boolean)
Parámetros
Objeto IDeviceContext que se utiliza para dibujar el texto.
- textToDraw
- String
Texto que se va a trazar.
- drawDisabled
- Boolean
true
para dibujar el texto atenuado; de lo contrario, false
.
Excepciones
dc
es null
.