Condividi tramite


InkDrawingAttributes.Size Proprietà

Definizione

Ottiene o imposta un valore che indica le dimensioni della descrizione penna (PenTip) utilizzata per disegnare un oggetto 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

Valore della proprietà

Larghezza e altezza della punta della penna in pixel indipendenti dal dispositivo. Il valore predefinito per ogni oggetto è 2.La forma della descrizione penna può essere specificata come rettangoloo cerchio.

Esempio

L'esempio seguente include una funzione che mostra come impostare le dimensioni () di un oggetto InkStroke (strokestrokeSize).

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;
    }
}

Si applica a

Vedi anche