InkOverlay.GetWindowInputRectangle 方法

获取在其中绘制墨迹 的窗口矩形(以像素为单位)。

命名空间:  Microsoft.Ink
程序集:  Microsoft.Ink(在 Microsoft.Ink.dll 中)

语法

声明
Public Sub GetWindowInputRectangle ( _
    <OutAttribute> ByRef windowInputRectangle As Rectangle _
)
用法
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
)

参数

备注

默认情况下,窗口输入矩形设置为 {0,0,0,0}。此默认矩形映射到整个窗口的大小。

如果在调用 SetWindowInputRectangle 之前调用 GetWindowInputRectangle,则此方法获取具有默认坐标的矩形。

示例

此 C# 示例获取新 InkOverlay 对象 theInkOverlay 的窗口输入矩形,其默认值为 {0,0,0,0}。

using Microsoft.Ink;
//...
InkOverlay theInkOverlay = new InkOverlay();
Rectangle theRect;
theInkOverlay.GetWindowInputRectangle(out theRect);

此 Microsoft Visual Basic .NET 示例获取新 InkOverlay 对象 theInkOverlay 的窗口输入矩形,其默认值为 {0,0,0,0}。

Imports Microsoft.Ink
'...
Dim theInkOverlay as New InkOverlay()
Dim theRect as Rectangle
theInkOverlay.GetWindowInputRectangle(theRect)

平台

Windows Vista

.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

InkOverlay 类

InkOverlay 成员

Microsoft.Ink 命名空间

InkOverlay.SetWindowInputRectangle