InkPicture.GetWindowInputRectangle 方法

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

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

语法

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

参数

备注

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

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

示例

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

[C#]

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

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

[Visual Basic]

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

平台

Windows Vista

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

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

InkPicture 类

InkPicture 成员

Microsoft.Ink 命名空间

InkPicture.SetWindowInputRectangle