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
Spolupráca s nami v službe GitHub
Zdroj tohto obsahu nájdete v službe GitHub, kde môžete vytvárať a skúmať problémy a žiadosti o prijatie zmien. Ďalšie informácie nájdete v našom sprievodcovi prispievateľom.