StylusPointCollection.Explicit(StylusPointCollection to Point[]) Operatore
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Converte un oggetto StylusPointCollection in una matrice di punti.
public:
static explicit operator cli::array <System::Windows::Point> ^(System::Windows::Input::StylusPointCollection ^ stylusPoints);
public static explicit operator System.Windows.Point[] (System.Windows.Input.StylusPointCollection stylusPoints);
static member op_Explicit : System.Windows.Input.StylusPointCollection -> System.Windows.Point[]
Public Shared Narrowing Operator CType (stylusPoints As StylusPointCollection) As Point()
Parametri
- stylusPoints
- StylusPointCollection
Insieme di punti dello stilo da convertire in una matrice di punti.
Restituisce
Una matrice di punti che contiene punti che corrispondono a ciascun StylusPoint nell'oggetto StylusPointCollection.
Esempio
Nell'esempio seguente viene illustrato come cancellare i tratti circondati da un lazo. Nell'esempio si presuppone che sia presente un InkPresenter denominato presenter
.
// Erase the selected strokes.
public void EraseStrokes(Stroke lasso)
{
Point[] strokePoints = (Point[])lasso.StylusPoints;
presenter.Strokes.Erase(strokePoints);
}
' Erase the selected strokes.
Public Overloads Sub EraseStrokes(ByVal lasso As Stroke)
If lasso Is Nothing Then
Return
End If
Dim strokePoints() As Point = CType(lasso.StylusPoints, Point())
presenter.Strokes.Erase(strokePoints)
End Sub