Sdílet prostřednictvím


StylusPointCollection.Explicit(StylusPointCollection to Point[]) Operátor

Definice

Převede na StylusPointCollection bodové pole.

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()

Parametry

stylusPoints
StylusPointCollection

Kolekce bodů pera, která se má převést na pole bodů.

Návraty

Point[]

Bodové pole obsahující body, které odpovídají jednotlivým StylusPoint bodům v objektu StylusPointCollection.

Příklady

Následující příklad ukazuje, jak vymazat tahy, které jsou obklopeny lasem. Příklad předpokládá, že existuje objekt s InkPresenter názvem 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

Platí pro