Freigeben über


InkCollector.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 InkCollector
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 des neuen InkCollector-Objekts theInkCollector abgerufen, dessen Standardwert {0,0,0,0} lautet.

using Microsoft.Ink;
//...
InkCollector theInkCollector = new InkCollector();
Rectangle theRect;
theInkCollector.GetWindowInputRectangle(out theRect);

In diesem Microsoft Visual Basic .NET-Beispiel wird das Eingaberechteck für das Fenster des neuen InkCollector-Objekts theInkCollector abgerufen, dessen Standardwert {0,0,0,0} lautet.

Imports Microsoft.Ink
'...
Dim theInkCollector as New InkCollector()
Dim theRect as Rectangle
theInkCollector.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

InkCollector-Klasse

InkCollector-Member

Microsoft.Ink-Namespace

InkCollector.SetWindowInputRectangle