Condividi tramite


Proprietà InkOverlayPaintingEventArgs.Graphics

Aggiornamento: novembre 2007

Ottiene l'oggetto Graphics utilizzato per disegnare l'elemento.

Spazio dei nomi:  Microsoft.Ink
Assembly:  Microsoft.Ink (in Microsoft.Ink.dll)

Sintassi

'Dichiarazione
Public ReadOnly Property Graphics As Graphics
'Utilizzo
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

Valore proprietà

Tipo: System.Drawing.Graphics
Oggetto utilizzato per disegnare l'elemento.

Esempi

In questo esempio di C# viene creato un gestore per l'evento Painting, theInkOverlay_Painting. Il gestore eventi applica un riempimento di colore giallo nel rettangolo in cui verrà posizionato l'oggetto InkOverlay.

private void theInkOverlay_Painting(object sender, InkOverlayPaintingEventArgs e)
{
    e.Graphics.FillRectangle(new SolidBrush(Color.Yellow), e.ClipRectangle);
}

In questo esempio di Microsoft® Visual Basic® .NET viene creato un gestore per l'evento Painting, theInkOverlay_Painting. Il gestore eventi applica un riempimento di colore giallo nel rettangolo in cui verrà posizionato l'oggetto InkOverlay.

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

Piattaforme

Windows Vista

.NET Framework e .NET Compact Framework non supportano tutte le versioni di ciascuna piattaforma. Per un elenco delle versioni supportate, vedere Requisiti di sistema di .NET Framework.

Informazioni sulla versione

.NET Framework

Supportato in: 3.0

Vedere anche

Riferimenti

InkOverlayPaintingEventArgs Classe

Membri InkOverlayPaintingEventArgs

Spazio dei nomi Microsoft.Ink

InkOverlay

InkOverlay.Painting