RectangleStylusShape Clase
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Representa una punta de lápiz óptico rectangular.
public ref class RectangleStylusShape sealed : System::Windows::Ink::StylusShape
public sealed class RectangleStylusShape : System.Windows.Ink.StylusShape
type RectangleStylusShape = class
inherit StylusShape
Public NotInheritable Class RectangleStylusShape
Inherits StylusShape
- Herencia
Ejemplos
En el ejemplo siguiente se muestra cómo usar para RectangleStylusShape realizar pruebas de posicionamiento en un .StrokeCollection En este ejemplo se supone que hay un InkPresenter elemento denominado 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
Constructores
RectangleStylusShape(Double, Double) |
Inicializa una nueva instancia de la clase RectangleStylusShape con el ancho y alto especificados. |
RectangleStylusShape(Double, Double, Double) |
Inicializa una nueva instancia de la clase RectangleStylusShape con el ancho, alto y ángulo especificados. |
Propiedades
Height |
Obtiene el alto del lápiz óptico. (Heredado de StylusShape) |
Rotation |
Obtiene el ángulo del lápiz óptico. (Heredado de StylusShape) |
Width |
Obtiene el ancho del lápiz óptico. (Heredado de StylusShape) |
Métodos
Equals(Object) |
Determina si el objeto especificado es igual que el objeto actual. (Heredado de Object) |
GetHashCode() |
Sirve como la función hash predeterminada. (Heredado de Object) |
GetType() |
Obtiene el Type de la instancia actual. (Heredado de Object) |
MemberwiseClone() |
Crea una copia superficial del Object actual. (Heredado de Object) |
ToString() |
Devuelve una cadena que representa el objeto actual. (Heredado de Object) |