InkDrawingAttributes.FitToCurve 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
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
属性值
Boolean
bool
如果使用 贝塞尔曲线,则为 true;否则 为 false。 默认值为 true。
示例
以下示例演示如何设置此 InkManager 对象管理的所有笔划的 FitToCurve 属性, (inkManager
在 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);