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
Samarbeta med oss på GitHub
Källan för det här innehållet finns på GitHub, där du även kan skapa och granska ärenden och pull-begäranden. Se vår deltagarguide för mer information.