StylusDevice.StylusButtons Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.