Point.Subtract Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
Subtract(Point, Point) |
Subtrahiert den angegebenen Point von einem anderen angegebenen Point und gibt die Differenz als Vector zurück. |
Subtract(Point, Vector) |
Subtrahiert den angegebenen Vector vom angegebenen Point und gibt den resultierenden Point zurück. |
Subtract(Point, Point)
public:
static System::Windows::Vector Subtract(System::Windows::Point point1, System::Windows::Point point2);
public static System.Windows.Vector Subtract (System.Windows.Point point1, System.Windows.Point point2);
static member Subtract : System.Windows.Point * System.Windows.Point -> System.Windows.Vector
Public Shared Function Subtract (point1 As Point, point2 As Point) As Vector
Parameter
- point1
- Point
Der Punkt, von dem point2
subtrahiert wird.
- point2
- Point
Der Punkt, der von point1
subtrahiert wird.
Gibt zurück
Die Differenz zwischen point1
und point2
.
Beispiele
Im folgenden Beispiel wird gezeigt, wie ein Point anderes Point unter Verwendung der statischen Subtract Methode subtrahiert wird.
private Vector subtractExample2()
{
Point point1 = new Point(10, 5);
Point point2 = new Point(15, 40);
// Subtracts a Point from a Point using the static Subtract method
// and returns the difference as a Vector.
// vectorResult is equal to (-5, -35)
Vector vectorResult = Point.Subtract(point1, point2);
return vectorResult;
}
Private Function subtractExample2() As Vector
Dim point1 As New Point(10, 5)
Dim point2 As New Point(15, 40)
' Subtracts a Point from a Point using the static Subtract method
' and returns the difference as a Vector.
' vectorResult is equal to (-5, -35)
Dim vectorResult As Vector = Point.Subtract(point1, point2)
Return vectorResult
End Function
Siehe auch
Gilt für
Subtract(Point, Vector)
public:
static System::Windows::Point Subtract(System::Windows::Point point, System::Windows::Vector vector);
public static System.Windows.Point Subtract (System.Windows.Point point, System.Windows.Vector vector);
static member Subtract : System.Windows.Point * System.Windows.Vector -> System.Windows.Point
Public Shared Function Subtract (point As Point, vector As Vector) As Point
Parameter
- point
- Point
Der Punkt, von dem vector
subtrahiert wird.
- vector
- Vector
Der vector
, der von point
subtrahiert wird.
Gibt zurück
Die Differenz zwischen point
und vector
.
Beispiele
Im folgenden Beispiel wird gezeigt, wie ein Subtrahieren von einer Vector Point mithilfe der statischen Subtract Methode abgezogen wird.
private Point subtractExample1()
{
Point point1 = new Point(10, 5);
Vector vector1 = new Vector(20, 30);
// Subtracts a Vector from a Point using the static Subtract method
// and returns the difference as a Point.
// pointResult is equal to (-10, -25).
Point pointResult = Point.Subtract(point1, vector1);
return pointResult;
}
Private Function subtractExample1() As Point
Dim point1 As New Point(10, 5)
Dim vector1 As New Vector(20, 30)
' Subtracts a Vector from a Point using the static Subtract method
' and returns the difference as a Point.
' pointResult is equal to (-10, -25).
Dim pointResult As Point = Point.Subtract(point1, vector1)
Return pointResult
End Function