Partager via


InkOverlayPaintingEventArgs.Graphics, propriété

Mise à jour : November 2007

Obtient l'objet Graphics (page pouvant être en anglais) qui est utilisé pour peindre l'élément.

Espace de noms :  Microsoft.Ink
Assembly :  Microsoft.Ink (dans Microsoft.Ink.dll)

Syntaxe

'Déclaration
Public ReadOnly Property Graphics As Graphics
'Utilisation
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

Valeur de propriété

Type : System.Drawing.Graphics
Objet qui est utilisé pour peindre l'élément.

Exemples

Cet exemple C# crée un gestionnaire d'événements pour l'événement Painting, theInkOverlay_Painting. Le gestionnaire d'événements remplit le rectangle où le InkOverlay sera en jaune.

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

Cet exemple Microsoft® Visual Basic® .NET crée un gestionnaire d'événements pour l'événement Painting, theInkOverlay_Painting. Le gestionnaire d'événements remplit le rectangle où le InkOverlay sera en jaune.

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

Plateformes

Windows Vista

Le .NET Framework et le .NET Compact Framework ne prennent pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.

Informations de version

.NET Framework

Pris en charge dans : 3.0

Voir aussi

Référence

InkOverlayPaintingEventArgs, classe

Membres InkOverlayPaintingEventArgs

Microsoft.Ink, espace de noms

InkOverlay

InkOverlay.Painting