Compartir a través de


InkDrawingAttributes.FitToCurve Propiedad

Definición

Obtiene o establece un valor que indica si se usa una curva Bezier o una colección de segmentos de línea recta para dibujar un InkStroke.

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

void FitToCurve(bool value);
public bool FitToCurve { get; set; }
var boolean = inkDrawingAttributes.fitToCurve;
inkDrawingAttributes.fitToCurve = boolean;
Public Property FitToCurve As Boolean

Valor de propiedad

Boolean

bool

true si se utiliza una curva Bezier; en caso contrario , false. El valor predeterminado es true.

Ejemplos

En el ejemplo siguiente se muestra cómo establecer el atributo FitToCurve para todos los trazos administrados por este objeto InkManager (inkManager) que se crean después de la llamada al método SetDefaultDrawingAttributes .

var inkManager = new Windows.UI.Input.Inking.InkManager();
var drawingAttributes = 
     new Windows.UI.Input.Inking.InkDrawingAttributes();
// True is the Default value for fitToCurve.
drawingAttributes.fitToCurve = false;
inkManager.setDefaultDrawingAttributes(drawingAttributes);

Se aplica a

Consulte también