RectangleStylusShape Classe
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Representa uma ponta de caneta retangular.
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
- Herança
Exemplos
O exemplo a seguir demonstra como usar um RectangleStylusShape teste de ocorrência em um StrokeCollection. Este exemplo pressupõe que há um InkPresenter chamado 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
Construtores
RectangleStylusShape(Double, Double) |
Inicializa uma nova instância da classe RectangleStylusShape com a largura e a altura especificadas. |
RectangleStylusShape(Double, Double, Double) |
Inicializa uma nova instância da classe RectangleStylusShape com a largura, a altura e o ângulo. |
Propriedades
Height |
Obtém a altura da caneta. (Herdado de StylusShape) |
Rotation |
Obtém o ângulo da caneta. (Herdado de StylusShape) |
Width |
Obtém a largura da caneta. (Herdado de StylusShape) |
Métodos
Equals(Object) |
Determina se o objeto especificado é igual ao objeto atual. (Herdado de Object) |
GetHashCode() |
Serve como a função de hash padrão. (Herdado de Object) |
GetType() |
Obtém o Type da instância atual. (Herdado de Object) |
MemberwiseClone() |
Cria uma cópia superficial do Object atual. (Herdado de Object) |
ToString() |
Retorna uma cadeia de caracteres que representa o objeto atual. (Herdado de Object) |