StylusDevice.StylusButtons Property

Definition

Gets the stylus buttons on the stylus.

public:
 property System::Windows::Input::StylusButtonCollection ^ StylusButtons { System::Windows::Input::StylusButtonCollection ^ get(); };
public System.Windows.Input.StylusButtonCollection StylusButtons { get; }
member this.StylusButtons : System.Windows.Input.StylusButtonCollection
Public ReadOnly Property StylusButtons As StylusButtonCollection

Property Value

A reference to a StylusButtonCollection object representing all of the buttons on the stylus.

Examples

The following example demonstrates the StylusButtons property.

StylusButtonCollection myStylusButtonCollection = myStylusDevice.StylusButtons;

if (null == myStylusButtonCollection)
{
    textbox1.AppendText("StylusButtons: null\n");
}
else
{
    textbox1.AppendText("# of StylusButtons == " + myStylusButtonCollection.Count.ToString() + "\n");
}
Dim myStylusButtonCollection As StylusButtonCollection = myStylusDevice.StylusButtons

If IsNothing(myStylusButtonCollection) Then
    textbox1.AppendText("StylusButtons: null" + vbCrLf)
Else
    textbox1.AppendText("# of StylusButtons == " + myStylusButtonCollection.Count.ToString() + vbCrLf)
End If

Applies to