StylusDevice.GetStylusPoints Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Zwraca obiekt StylusPointCollection zawierający StylusPoint obiekty zebrane z stylu.
Przeciążenia
| GetStylusPoints(IInputElement) |
Zwraca obiekt StylusPointCollection zawierający StylusPoint obiekty zebrane z stylu. |
| GetStylusPoints(IInputElement, StylusPointDescription) |
Zwraca obiekt StylusPointCollection zawierający StylusPoint obiekty zebrane z stylu. Używa określonego StylusPointDescriptionelementu . |
GetStylusPoints(IInputElement)
Zwraca obiekt StylusPointCollection zawierający StylusPoint obiekty zebrane z stylu.
public:
System::Windows::Input::StylusPointCollection ^ GetStylusPoints(System::Windows::IInputElement ^ relativeTo);
public System.Windows.Input.StylusPointCollection GetStylusPoints (System.Windows.IInputElement relativeTo);
member this.GetStylusPoints : System.Windows.IInputElement -> System.Windows.Input.StylusPointCollection
Public Function GetStylusPoints (relativeTo As IInputElement) As StylusPointCollection
Parametry
- relativeTo
- IInputElement
Współrzędnych IInputElement (x,y) w obiekcie StylusPointCollection są mapowane.
Zwraca
Obiekt StylusPointCollection zawierający StylusPoint obiekty zebrane przez ryski.
Wyjątki
relativeTo nie jest ani UIElement , ani FrameworkContentElement.
Przykłady
W poniższym przykładzie pokazano, jak pobrać element StylusPointCollection z elementu StylusDevice.
StylusPointCollection myStylusPoints =
myStylusDevice.GetStylusPoints(myStylusDevice.Target);
textbox1.AppendText("Got " + myStylusPoints.Count.ToString() + " packets\n");
Dim myStylusPoints As StylusPointCollection = _
myStylusDevice.GetStylusPoints(myStylusDevice.Target)
textbox1.AppendText("Got " + myStylusPoints.Count.ToString() + " packets" + vbCrLf)
Dotyczy
GetStylusPoints(IInputElement, StylusPointDescription)
Zwraca obiekt StylusPointCollection zawierający StylusPoint obiekty zebrane z stylu. Używa określonego StylusPointDescriptionelementu .
public:
System::Windows::Input::StylusPointCollection ^ GetStylusPoints(System::Windows::IInputElement ^ relativeTo, System::Windows::Input::StylusPointDescription ^ subsetToReformatTo);
public System.Windows.Input.StylusPointCollection GetStylusPoints (System.Windows.IInputElement relativeTo, System.Windows.Input.StylusPointDescription subsetToReformatTo);
member this.GetStylusPoints : System.Windows.IInputElement * System.Windows.Input.StylusPointDescription -> System.Windows.Input.StylusPointCollection
Public Function GetStylusPoints (relativeTo As IInputElement, subsetToReformatTo As StylusPointDescription) As StylusPointCollection
Parametry
- relativeTo
- IInputElement
Współrzędnych IInputElement (x y) w obiekcie StylusPointCollection są mapowane.
- subsetToReformatTo
- StylusPointDescription
Element StylusPointDescription , który ma być używany przez element StylusPointCollection.
Zwraca
Obiekt StylusPointCollection zawierający StylusPoint obiekty zebrane z stylu.
Wyjątki
relativeTo nie jest ani UIElement , ani FrameworkContentElement.
Przykłady
W poniższym przykładzie pokazano, jak pobierać StylusPoint obiekty z bieżącego StylusDeviceelementu .
StylusDevice currentStylus = Stylus.CurrentStylusDevice;
StylusPointDescription description1 =
new StylusPointDescription(new StylusPointPropertyInfo[]
{
new StylusPointPropertyInfo(StylusPointProperties.X),
new StylusPointPropertyInfo(StylusPointProperties.Y),
new StylusPointPropertyInfo(StylusPointProperties.NormalPressure),
new StylusPointPropertyInfo(StylusPointProperties.XTiltOrientation),
new StylusPointPropertyInfo(StylusPointProperties.YTiltOrientation),
new StylusPointPropertyInfo(StylusPointProperties.BarrelButton)
});
StylusPointDescription description2 = currentStylus.GetStylusPoints(inkCanvas1).Description;
StylusPointDescription description3 =
StylusPointDescription.GetCommonDescription(description1, description2);
StylusPointCollection points = currentStylus.GetStylusPoints(inkCanvas1, description3);
Dim currentStylus As StylusDevice = Stylus.CurrentStylusDevice
Dim description1 As New StylusPointDescription(New StylusPointPropertyInfo() _
{New StylusPointPropertyInfo(StylusPointProperties.X), _
New StylusPointPropertyInfo(StylusPointProperties.Y), _
New StylusPointPropertyInfo(StylusPointProperties.NormalPressure), _
New StylusPointPropertyInfo(StylusPointProperties.XTiltOrientation), _
New StylusPointPropertyInfo(StylusPointProperties.YTiltOrientation), _
New StylusPointPropertyInfo(StylusPointProperties.BarrelButton)})
Dim description2 As StylusPointDescription = currentStylus.GetStylusPoints(inkCanvas1).Description
Dim description3 As StylusPointDescription = _
StylusPointDescription.GetCommonDescription(description1, description2)
Dim points As StylusPointCollection = currentStylus.GetStylusPoints(inkCanvas1, description3)
Uwagi
subsetToReformatTo musi być zgodna Description z właściwością używanej StylusPointCollection przez metodę GetStylusPoints(IInputElement) . GetCommonDescription Użyj metody , aby uzyskać metodę StylusPointDescription przed wywołaniem GetStylusPoints(IInputElement, StylusPointDescription) metody .