VisualStyleRenderer.DrawText Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Consente di disegnare testo entro i limiti specificati.
Overload
DrawText(IDeviceContext, Rectangle, String, Boolean, TextFormatFlags) |
Consente di disegnare testo entro il rettangolo di delimitazione specificato con l'opzione di visualizzazione del testo disabilitato e applicando altra formattazione di testo. |
DrawText(IDeviceContext, Rectangle, String) |
Consente di disegnare testo entro i limiti specificati utilizzando la formattazione predefinita. |
DrawText(IDeviceContext, Rectangle, String, Boolean) |
Consente di disegnare testo entro i limiti specificati con l'opzione di visualizzazione del testo disabilitato. |
DrawText(IDeviceContext, Rectangle, String, Boolean, TextFormatFlags)
Consente di disegnare testo entro il rettangolo di delimitazione specificato con l'opzione di visualizzazione del testo disabilitato e applicando altra formattazione di testo.
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)
Parametri
Oggetto IDeviceContext utilizzato per disegnare il testo.
- textToDraw
- String
Testo da disegnare.
- drawDisabled
- Boolean
true
per disegnare testo inattivo; in caso contrario, false
.
- flags
- TextFormatFlags
Combinazione bit per bit dei valori di TextFormatFlags.
Eccezioni
dc
è null
.
Si applica a
DrawText(IDeviceContext, Rectangle, String)
Consente di disegnare testo entro i limiti specificati utilizzando la formattazione predefinita.
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)
Parametri
Oggetto IDeviceContext utilizzato per disegnare il testo.
- textToDraw
- String
Testo da disegnare.
Eccezioni
dc
è null
.
Si applica a
DrawText(IDeviceContext, Rectangle, String, Boolean)
Consente di disegnare testo entro i limiti specificati con l'opzione di visualizzazione del testo disabilitato.
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)
Parametri
Oggetto IDeviceContext utilizzato per disegnare il testo.
- textToDraw
- String
Testo da disegnare.
- drawDisabled
- Boolean
true
per disegnare testo inattivo; in caso contrario, false
.
Eccezioni
dc
è null
.