InPlaceSizeChangeEventArgs.OldSize 属性

获取 Tablet PC 输入面板的当前大小。

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

语法

声明
Public ReadOnly Property OldSize As Rectangle
用法
Dim instance As InPlaceSizeChangeEventArgs
Dim value As Rectangle

value = instance.OldSize
public Rectangle OldSize { get; }
public:
property Rectangle OldSize {
    Rectangle get ();
}
/** @property */
public Rectangle get_OldSize()
public function get OldSize () : Rectangle

属性值

类型:System.Drawing.Rectangle
输入面板的当前大小。

示例

此示例定义 InPlaceSizeChanging 事件的事件处理程序,其中包含在 InPlaceSizeChangeEventArgs 对象中的值用于设置 TextBox (outputTextBox) 的 TextBox.Text 属性。

Sub tip_InPlaceSizeChanging(ByVal sender As Object, ByVal e As InPlaceSizeChangeEventArgs)
    outputTextBox.Text += "Old In Place Size is " + e.OldSize.Width.ToString() + "x" + e.OldSize.Height.ToString() + Environment.NewLine
End Sub
void tip_InPlaceSizeChanging(object sender, InPlaceSizeChangeEventArgs e)
{
    outputTextBox.Text += "Old In Place Size is " + e.OldSize.Width + "x" + e.OldSize.Height + Environment.NewLine;
}

平台

Windows Vista, Windows XP SP2, Windows Server 2003

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

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

InPlaceSizeChangeEventArgs 类

InPlaceSizeChangeEventArgs 成员

Microsoft.Ink.TextInput 命名空间