Compartilhar via


InkDrawingAttributes.Size Propriedade

Definição

Obtém ou define um valor que indica as dimensões da ponta da caneta (PenTip) usada para desenhar um InkStroke.

public:
 property Size Size { Size get(); void set(Size value); };
Size Size();

void Size(Size value);
public Size Size { get; set; }
var size = inkDrawingAttributes.size;
inkDrawingAttributes.size = size;
Public Property Size As Size

Valor da propriedade

A largura e a altura da ponta da caneta em pixels independentes do dispositivo. O valor padrão para cada é 2. A forma da Dica de Caneta pode ser especificada como um Retângulo ou um Círculo.

Exemplos

O exemplo a seguir inclui uma função que mostra como definir o Tamanho (strokeSize) de um InkStroke (stroke).

function shapeStroke(stroke, width)
{
    var att = stroke.drawingAttributes;
    var strokeSize = att.size;
    if (strokeSize.width !== width)
    {
        strokeSize.width = strokeSize.height = width;
        att.size = strokeSize;
        stroke.drawingAttributes = att;
        return true;
    }
    else
    {
        return false;
    }
}

Aplica-se a

Confira também