TabletDevice.SupportedStylusPointProperties Vlastnost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá kolekci StylusPointProperty objektů, které TabletDevice podporuje.
public:
property System::Collections::ObjectModel::ReadOnlyCollection<System::Windows::Input::StylusPointProperty ^> ^ SupportedStylusPointProperties { System::Collections::ObjectModel::ReadOnlyCollection<System::Windows::Input::StylusPointProperty ^> ^ get(); };
public System.Collections.ObjectModel.ReadOnlyCollection<System.Windows.Input.StylusPointProperty> SupportedStylusPointProperties { get; }
member this.SupportedStylusPointProperties : System.Collections.ObjectModel.ReadOnlyCollection<System.Windows.Input.StylusPointProperty>
Public ReadOnly Property SupportedStylusPointProperties As ReadOnlyCollection(Of StylusPointProperty)
Hodnota vlastnosti
Kolekce StylusPointProperty objektů, které TabletDevice podporuje.
Příklady
Následující příklad ukazuje, jak získat vlastnosti, které TabletDevice podporuje.
TabletDevice currentTablet = Tablet.CurrentTabletDevice;
ReadOnlyCollection<StylusPointProperty> supportedProperties =
currentTablet.SupportedStylusPointProperties;
StringWriter properties = new StringWriter();
foreach (StylusPointProperty property in supportedProperties)
{
properties.WriteLine(property.ToString());
}
MessageBox.Show(properties.ToString());
Dim currentTablet As TabletDevice = Tablet.CurrentTabletDevice
Dim supportedProperties As ReadOnlyCollection(Of StylusPointProperty) _
= currentTablet.SupportedStylusPointProperties
Dim properties As New StringWriter()
For Each supportedProperty As StylusPointProperty In supportedProperties
properties.WriteLine(supportedProperty.ToString())
Next supportedProperty
MessageBox.Show(properties.ToString())
Platí pro
Spolupracujte s námi na GitHubu
Zdroj tohoto obsahu najdete na GitHubu, kde můžete také vytvářet a kontrolovat problémy a žádosti o přijetí změn. Další informace najdete v našem průvodci pro přispěvatele.