共用方式為


InkPicture.SetAllTabletsMode 方法 (Boolean)

設定 InkPicture 控制項,以從裝在 Tablet PC 上的任何手寫板及滑鼠 (選擇項) 收集筆墨

命名空間:  Microsoft.Ink
組件:  Microsoft.Ink (在 Microsoft.Ink.dll 中)

語法

'宣告
Public Sub SetAllTabletsMode ( _
    useMouseForInput As Boolean _
)
'用途
Dim instance As InkPicture
Dim useMouseForInput As Boolean

instance.SetAllTabletsMode(useMouseForInput)
public void SetAllTabletsMode(
    bool useMouseForInput
)
public:
void SetAllTabletsMode(
    bool useMouseForInput
)
public void SetAllTabletsMode(
    boolean useMouseForInput
)
public function SetAllTabletsMode(
    useMouseForInput : boolean
)

參數

  • useMouseForInput
    型別:System.Boolean
    指出是否使用滑鼠做為輸入裝置的布林值。
    如果除了畫筆之外,滑鼠也用於輸入,則為 true。
    如果滑鼠無法用於輸入,則為 false。

備註

這是 InkPicture 控制項的預設模式。若要讓 InkPicture 控制項只從一個手寫板收集筆墨,請呼叫 SetSingleTabletIntegratedMode 方法。

ms569512.alert_note(zh-tw,VS.90).gif注意事項:

呼叫這個方法之前,必須先停用 InkPicture 控制項。若要停用 InkPicture 控制項,請將 InkEnabled 屬性設為 false。在呼叫 SetAllTabletsMode 方法之後,藉由將 InkEnabled 屬性設定為 true 來啟用 InkPicture 控制項。

InkPicture 控制項從使用單一手寫板收集筆墨切換到使用所有手寫板收集筆墨時,會將 Cursors 屬性設定為空集合。

ms569512.alert_note(zh-tw,VS.90).gif注意事項:

如果透過將 useMouseForInput 參數設定為 true (或無參數) 來呼叫 SetAllTabletsMode 方法,則會使用滑鼠做為輸入裝置。之後,如果透過將 useMouseForInput 參數設定為 false 來呼叫 SetAllTabletsMode 方法,則並不會從 Cursors 屬性移除滑鼠。

範例

在這個 C# 範例中,如果有多個可用的手寫板,則會透過將 useMouseForInput 參數設定為 false 的方式,在新的 InkPicture 控制項 (變數名稱為 theInkCollector) 上呼叫 SetAllTabletsMode

[C#]

using Microsoft.Ink;
// . . .
Tablets theTablets = new Tablets();
InkPicture theInkPicture = new InkPicture();
if (theTablets.Count > 1)
    theInkPicture.SetAllTabletsMode(false);
else
    theInkPicture.SetAllTabletsMode();

在這個 Microsoft® Visual Basic® .NET 範例中,如果有多個可用的手寫板,則會透過將 useMouseForInput 參數設定為 false 的方式,在新的 InkPicture 控制項 (變數名稱為 theInkCollector) 上呼叫 SetAllTabletsMode

[Visual Basic]

Imports Microsoft.Ink
' . . .
Dim theTablets As New Tablets()
Dim theInkPicture As New InkPicture()
If theTablets.Count > 1 Then
    theInkPicture.SetAllTabletsMode(False)
Else
    theInkPicture.SetAllTabletsMode()
End If

平台

Windows Vista

.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求

版本資訊

.NET Framework

支援版本:3.0

請參閱

參考

InkPicture 類別

InkPicture 成員

SetAllTabletsMode 多載

Microsoft.Ink 命名空間

Tablets

InkPicture.InkEnabled

InkPicture.SetSingleTabletIntegratedMode