InkOverlay.GetWindowInputRectangle, méthode
Mise à jour : November 2007
Obtient le rectangle de fenêtre, en pixels, dans lequel l'entrée manuscrite a été tracée.
Espace de noms : Microsoft.Ink
Assembly : Microsoft.Ink (dans Microsoft.Ink.dll)
Syntaxe
'Déclaration
Public Sub GetWindowInputRectangle ( _
<OutAttribute> ByRef windowInputRectangle As Rectangle _
)
'Utilisation
Dim instance As InkOverlay
Dim windowInputRectangle As Rectangle
instance.GetWindowInputRectangle(windowInputRectangle)
public void GetWindowInputRectangle(
out Rectangle windowInputRectangle
)
public:
void GetWindowInputRectangle(
[OutAttribute] Rectangle% windowInputRectangle
)
public void GetWindowInputRectangle(
/** @attribute OutAttribute */ /** @ref */Rectangle windowInputRectangle
)
public function GetWindowInputRectangle(
windowInputRectangle : Rectangle
)
Paramètres
- windowInputRectangle
Type : System.Drawing.Rectangle%
Rectangle dans lequel l'entrée manuscrite est tracée.
Notes
Par défaut, le rectangle de saisie de la fenêtre a la valeur {0,0,0,0}. Ce rectangle par défaut correspond à la taille de la fenêtre entière.
Si vous appelez GetWindowInputRectangle avant d'appeler SetWindowInputRectangle, cette méthode renvoie un rectangle avec les coordonnées par défaut.
Exemples
Cet exemple C# renvoie la fenêtre de saisie rectangulaire d'un nouvel objet InkOverlay, theInkOverlay, qui a comme valeur par défaut {0,0,0,0}.
using Microsoft.Ink;
//...
InkOverlay theInkOverlay = new InkOverlay();
Rectangle theRect;
theInkOverlay.GetWindowInputRectangle(out theRect);
Cet exemple Microsoft Visual Basic .NET obtient le rectangle de saisie de la fenêtre d'un nouvel objet InkOverlay, theInkOverlay, dont la valeur par défaut est {0,0,0,0}.
Imports Microsoft.Ink
'...
Dim theInkOverlay as New InkOverlay()
Dim theRect as Rectangle
theInkOverlay.GetWindowInputRectangle(theRect)
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