SystemPens.InfoText Propiedad

Definición

Obtiene una estructura Pen que es el color del texto de la información sobre herramientas.

public:
 static property System::Drawing::Pen ^ InfoText { System::Drawing::Pen ^ get(); };
public static System.Drawing.Pen InfoText { get; }
static member InfoText : System.Drawing.Pen
Public Shared ReadOnly Property InfoText As Pen

Valor de propiedad

Pen

Una estructura Pen que es el color del texto de la información sobre herramientas.

Ejemplos

En el ejemplo de código siguiente se muestra cómo usar la InfoText propiedad . Para ejecutar este ejemplo, péguelo en un formulario Windows Forms. Controle el evento del Paint formulario y llame al DrawWithInfoTextPen método desde el Paint método de control de eventos, pasando e como PaintEventArgs.

private void DrawWithInfoTextPen(PaintEventArgs e)
{
    Rectangle rectangle1 = new Rectangle(10, 10, 100, 100);
    e.Graphics.DrawRectangle(SystemPens.InfoText, rectangle1);
}
Private Sub DrawWithInfoTextPen(ByVal e As PaintEventArgs) 
    Dim rectangle1 As New Rectangle(10, 10, 100, 100)
    e.Graphics.DrawRectangle(SystemPens.InfoText, rectangle1)

End Sub

Se aplica a