Freigeben über


InkPicture.GetWindowInputRectangle-Methode

Ruft das Fensterrechteck (in Pixel) ab, in dem Freihand gezeichnet wird.

Namespace:  Microsoft.Ink
Assembly:  Microsoft.Ink (in Microsoft.Ink.dll)

Syntax

'Declaration
Public Sub GetWindowInputRectangle ( _
    <OutAttribute> ByRef windowInputRectangle As Rectangle _
)
'Usage
Dim instance As InkPicture
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
)

Parameter

Hinweise

Standardmäßig wird das Eingaberechteck für das Fenster auf {0,0,0,0} festgelegt. Dieses Standardrechteck wird der Größe des gesamten Fensters zugeordnet.

Wenn Sie GetWindowInputRectangle aufrufen, bevor Sie SetWindowInputRectangle aufrufen, ruft diese Methode ein Rechteck mit den Standardkoordinaten ab.

Beispiele

In diesem C#-Beispiel wird das Eingaberechteck für das Fenster eines neuen InkPicture-Objekts mit dem Namen theInkPicture abgerufen, dessen Standardwert {0,0,0,0} lautet.

[C#]

using Microsoft.Ink;
//...
InkPicture theInkPicture = new InkPicture();
Rectangle theRect;
theInkPicture.GetWindowInputRectangle(out theRect)//...

In diesem Microsoft® Visual Basic® .NET-Beispiel wird das Eingaberechteck für das Fenster eines neuen InkPicture-Objekts mit dem Namen theInkPicture abgerufen, dessen Standardwert {0,0,0,0} lautet.

[Visual Basic]

Imports Microsoft.Ink
'...
Dim theInkPicture as New InkPicture()
Dim theRect as Rectangle
theInkPicture.GetWindowInputRectangle(theRect)

Plattformen

Windows Vista

.NET Framework und .NET Compact Framework unterstützen nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET Framework.

Versionsinformationen

.NET Framework

Unterstützt in: 3.0

Siehe auch

Referenz

InkPicture-Klasse

InkPicture-Member

Microsoft.Ink-Namespace

InkPicture.SetWindowInputRectangle