RectangleStylusShape Konstruktory
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.
Inicjuje nowe wystąpienie klasy RectangleStylusShape.
Przeciążenia
RectangleStylusShape(Double, Double) |
Inicjuje RectangleStylusShape nowe wystąpienie klasy o określonej szerokości i wysokości. |
RectangleStylusShape(Double, Double, Double) |
Inicjuje RectangleStylusShape nowe wystąpienie klasy o określonej szerokości, wysokości i kątze. |
RectangleStylusShape(Double, Double)
Inicjuje RectangleStylusShape nowe wystąpienie klasy o określonej szerokości i wysokości.
public:
RectangleStylusShape(double width, double height);
public RectangleStylusShape (double width, double height);
new System.Windows.Ink.RectangleStylusShape : double * double -> System.Windows.Ink.RectangleStylusShape
Public Sub New (width As Double, height As Double)
Parametry
- width
- Double
Szerokość kształtu rysika.
- height
- Double
Wysokość kształtu rysika.
Przykłady
W poniższym przykładzie pokazano, jak używać metody RectangleStylusShape do przeprowadzania testów trafień na obiekcie StrokeCollection. W tym przykładzie założono, że istnieje InkPresenter nazwa .presenter
private void HitTestWithEraser(Point[] points)
{
RectangleStylusShape eraser = new RectangleStylusShape(3, 3, 0);
StrokeCollection strokes = presenter.Strokes.HitTest(points, eraser);
foreach (Stroke s in strokes)
{
s.DrawingAttributes.Color = Colors.Purple;
}
}
Private Sub HitTestWithEraser(ByVal points() As Point)
Dim eraser As RectangleStylusShape = New RectangleStylusShape(3, 3, 0)
Dim strokes As StrokeCollection = presenter.Strokes.HitTest(points, eraser)
Dim s As Stroke
For Each s In strokes
s.DrawingAttributes.Color = Colors.Purple
Next
End Sub
Dotyczy
RectangleStylusShape(Double, Double, Double)
Inicjuje RectangleStylusShape nowe wystąpienie klasy o określonej szerokości, wysokości i kątze.
public:
RectangleStylusShape(double width, double height, double rotation);
public RectangleStylusShape (double width, double height, double rotation);
new System.Windows.Ink.RectangleStylusShape : double * double * double -> System.Windows.Ink.RectangleStylusShape
Public Sub New (width As Double, height As Double, rotation As Double)
Parametry
- width
- Double
Szerokość kształtu rysika.
- height
- Double
Wysokość kształtu rysika.
- rotation
- Double
Kąt kształtu rysika.
Przykłady
W poniższym przykładzie pokazano, jak używać metody RectangleStylusShape do przeprowadzania testów trafień na obiekcie StrokeCollection. W tym przykładzie założono, że istnieje InkPresenter nazwa .presenter
private void HitTestWithEraser(Point[] points)
{
RectangleStylusShape eraser = new RectangleStylusShape(3, 3, 0);
StrokeCollection strokes = presenter.Strokes.HitTest(points, eraser);
foreach (Stroke s in strokes)
{
s.DrawingAttributes.Color = Colors.Purple;
}
}
Private Sub HitTestWithEraser(ByVal points() As Point)
Dim eraser As RectangleStylusShape = New RectangleStylusShape(3, 3, 0)
Dim strokes As StrokeCollection = presenter.Strokes.HitTest(points, eraser)
Dim s As Stroke
For Each s In strokes
s.DrawingAttributes.Color = Colors.Purple
Next
End Sub