StylusButtonCollection.GetStylusButtonByGuid(Guid) メソッド

定義

指定した GUID が識別する StylusButton を取得します。

public:
 System::Windows::Input::StylusButton ^ GetStylusButtonByGuid(Guid guid);
public System.Windows.Input.StylusButton GetStylusButtonByGuid (Guid guid);
member this.GetStylusButtonByGuid : Guid -> System.Windows.Input.StylusButton
Public Function GetStylusButtonByGuid (guid As Guid) As StylusButton

パラメーター

guid
Guid

必要な Guid を指定する StylusButton

戻り値

指定した GUID の StylusButton

次の例では、 の を StylusButtonState 取得する方法を barrel button示します。

void textbox1_StylusInRange(object sender, StylusEventArgs e)
{
    StylusButtonCollection buttons = e.StylusDevice.StylusButtons;

    StylusButton barrelButton = buttons.GetStylusButtonByGuid(StylusPointProperties.BarrelButton.Id);
    if (barrelButton != null)
    {
        textbox1.AppendText(barrelButton.StylusButtonState.ToString());
    }

    textbox1.AppendText("\r\n");
}
Private Sub textbox1_StylusInRange(ByVal sender As Object, ByVal e As StylusEventArgs)

    Dim buttons As StylusButtonCollection = e.StylusDevice.StylusButtons

    Dim barrelButton As StylusButton = buttons.GetStylusButtonByGuid(StylusPointProperties.BarrelButton.Id)

    If Not barrelButton Is Nothing Then
        textbox1.AppendText(barrelButton.StylusButtonState.ToString())
    End If

    textbox1.AppendText(vbCr & vbLf)

End Sub

注釈

StylusPointPropertiesクラスには、StylusPointPropertyタブレット ペンの先端ボタンとバレル ボタン用の が含まれています。 ボタンに Id 関連付けられている GUID を取得するには、 プロパティを使用します。

適用対象