InkPicture.SetWindowInputRectangle 方法
設定要在其中繪製筆墨的視窗矩形 (以像素為單位)。
命名空間: Microsoft.Ink
組件: Microsoft.Ink (在 Microsoft.Ink.dll 中)
語法
'宣告
Public Sub SetWindowInputRectangle ( _
windowInputRectangle As Rectangle _
)
'用途
Dim instance As InkPicture
Dim windowInputRectangle As Rectangle
instance.SetWindowInputRectangle(windowInputRectangle)
public void SetWindowInputRectangle(
Rectangle windowInputRectangle
)
public:
void SetWindowInputRectangle(
Rectangle windowInputRectangle
)
public void SetWindowInputRectangle(
Rectangle windowInputRectangle
)
public function SetWindowInputRectangle(
windowInputRectangle : Rectangle
)
參數
- windowInputRectangle
型別:System.Drawing.Rectangle
以視窗座標表示的輸入矩形。
備註
根據預設,視窗輸入矩形會設定為 {0,0,0,0}。這個預設矩形對應至整個視窗的大小。
- 若要將視窗輸入矩形重設為預設座標的空矩形,請透過呼叫將 {0,0,0,0} 傳遞給 SetWindowInputRectangle 方法,而非傳遞 nullNull 參照 (即 Visual Basic 中的 Nothing) (在 Microsoft® Visual Basic® .NET 中為 Nothing)。
您無法在 Right 屬性值小於 Left 屬性值,或是 Bottom 屬性值小於 Top 屬性值的矩形中傳遞。例如,{500, 500, 400, 400} 參數值的矩形無效
可以指定負座標空間中的矩形,但沒有意義,因為這一定會導致視窗無法書寫。
警告
如果將視窗輸入矩形設定為與 Splitter 控制項 (英文) 或視窗邊框重疊,則可能會在調整視窗大小時發生不可預測的結果
範例
這個 C# 範例會呼叫 SetWindowInputRectangle 方法,將筆墨輸入區域設定為其所附加目標的 InkPicture 物件 (變數名稱 theInkPicture) 的整個視窗大小。
[C#]
using Microsoft.Ink;
//...
InkPicture theInkCollector;
public Form1()
{
// Initialization
theInkCollector = new InkPicture(Handle);
Rectangle theRect = new Rectangle(0,0,0,0);
theInkPicture.SetWindowInputRectangle(theRect);
//...
}
這個 Microsoft® Visual Basic® .NET 範例會呼叫 SetWindowInputRectangle 方法,將筆墨輸入區域設定為其所附加目標的 InkPicture 物件 (變數名稱 theInkPicture) 的整個視窗大小。
[Visual Basic]
Imports Microsoft.Ink
Dim theInkPicture As InkPicture
Public Sub Form1()
'Initialization
Dim theRect As Rectangle
theInkPicture = New InkPicture(Handle)
theRect = New Rectangle(0,0,0,0)
theInkPicture.SetWindowInputRectangle(theRect)
'...
End Sub
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求。
版本資訊
.NET Framework
支援版本:3.0