Partager via


InkOverlayPaintingEventArgs.ClipRectangle, propriété

Mise à jour : November 2007

Obtient la structure Rectangle (page pouvant être en anglais) qui représente le rectangle dans lequel peindre.

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

Syntaxe

'Déclaration
Public ReadOnly Property ClipRectangle As Rectangle
'Utilisation
Dim instance As InkOverlayPaintingEventArgs
Dim value As Rectangle

value = instance.ClipRectangle
public Rectangle ClipRectangle { get; }
public:
property Rectangle ClipRectangle {
    Rectangle get ();
}
/** @property */
public Rectangle get_ClipRectangle()
public function get ClipRectangle () : Rectangle

Valeur de propriété

Type : System.Drawing.Rectangle
Rectangle dans lequel peindre.

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