RectangleStylusShape Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Initialise une nouvelle instance de la classe RectangleStylusShape.
Surcharges
RectangleStylusShape(Double, Double) |
Initialise une nouvelle instance de la classe RectangleStylusShape avec la largeur et la hauteur spécifiées. |
RectangleStylusShape(Double, Double, Double) |
Initialise une nouvelle instance de la classe RectangleStylusShape avec la largeur, la hauteur et l’angle spécifiés. |
RectangleStylusShape(Double, Double)
Initialise une nouvelle instance de la classe RectangleStylusShape avec la largeur et la hauteur spécifiées.
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)
Paramètres
- width
- Double
La largeur de la forme du stylet.
- height
- Double
La hauteur de la forme du stylet.
Exemples
L’exemple suivant montre comment utiliser un RectangleStylusShape test de positionnement sur un StrokeCollection. Cet exemple suppose qu’il existe un InkPresenter appelé 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
S’applique à
RectangleStylusShape(Double, Double, Double)
Initialise une nouvelle instance de la classe RectangleStylusShape avec la largeur, la hauteur et l’angle spécifiés.
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)
Paramètres
- width
- Double
La largeur de la forme du stylet.
- height
- Double
La hauteur de la forme du stylet.
- rotation
- Double
L’angle de la forme du stylet.
Exemples
L’exemple suivant montre comment utiliser un RectangleStylusShape test de positionnement sur un StrokeCollection. Cet exemple suppose qu’il existe un InkPresenter appelé 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