InkDrawingAttributes.PenTip プロパティ

定義

InkStroke を描画するときのペン先の形状を示す値を取得または設定します。

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

void PenTip(PenTipShape value);
public PenTipShape PenTip { get; set; }
var penTipShape = inkDrawingAttributes.penTip;
inkDrawingAttributes.penTip = penTipShape;
Public Property PenTip As PenTipShape

プロパティ値

ペン/スタイラスの先端の形状。 既定値は Circleです。

次の例では、 InkManager オブジェクト (inkManager) によって管理されるすべてのストロークに対して PenTip 属性を設定する方法を示します。

var inkManager = new Windows.UI.Input.Inking.InkManager();
var drawingAttributes = new Windows.UI.Input.Inking.InkDrawingAttributes();
drawingAttributes.penTip = Windows.UI.Input.Inking.PenTipShape.rectangle;
inkManager.setDefaultDrawingAttributes(drawingAttributes);

注釈

PenTipShape プロパティと PenTip を使用して、さまざまな書道効果をサポートします。

適用対象

こちらもご覧ください