InkOverlayPaintingEventArgs.Graphics (Propiedad)
Actualización: noviembre 2007
Obtiene el objeto Graphicsdel que se utiliza para dibujar el elemento.
Espacio de nombres: Microsoft.Ink
Ensamblado: Microsoft.Ink (en Microsoft.Ink.dll)
Sintaxis
'Declaración
Public ReadOnly Property Graphics As Graphics
'Uso
Dim instance As InkOverlayPaintingEventArgs
Dim value As Graphics
value = instance.Graphics
public Graphics Graphics { get; }
public:
property Graphics^ Graphics {
Graphics^ get ();
}
/** @property */
public Graphics get_Graphics()
public function get Graphics () : Graphics
Valor de propiedad
Tipo: System.Drawing.Graphics
Objeto que se utiliza para dibujar el elemento.
Ejemplos
En este ejemplo de C# se crea un controlador para el evento Painting, theInkOverlay_Painting. El controlador de eventos rellena el rectángulo en el que InkOverlay estará en amarillo.
private void theInkOverlay_Painting(object sender, InkOverlayPaintingEventArgs e)
{
e.Graphics.FillRectangle(new SolidBrush(Color.Yellow), e.ClipRectangle);
}
En este ejemplo de Microsoft® Visual Basic® .NET se crea un controlador para el evento Painting, theInkOverlay_Painting. El controlador de eventos rellena el rectángulo en el que InkOverlay estará en amarillo.
Private Sub theInkOverlay_Painting(ByVal sender As Object, ByVal e As Microsoft.Ink.InkOverlayPaintingEventArgs) _
Handles theInkOverlay.Painting
e.Graphics.FillRectangle(New SolidBrush(Color.Yellow), e.ClipRectangle)
End Sub
Plataformas
Windows Vista
.NET Framework y .NET Compact Framework no admiten todas las versiones de cada plataforma. Para obtener una lista de las versiones compatibles, vea Requisitos de sistema de .NET Framework.
Información de versión
.NET Framework
Compatible con: 3.0
Vea también
Referencia
InkOverlayPaintingEventArgs (Clase)
InkOverlayPaintingEventArgs (Miembros)