InkCanvas.DefaultStylusPointDescription プロパティ

定義

InkCanvas のスタイラス ポイントの説明を取得または設定します。

public:
 property System::Windows::Input::StylusPointDescription ^ DefaultStylusPointDescription { System::Windows::Input::StylusPointDescription ^ get(); void set(System::Windows::Input::StylusPointDescription ^ value); };
public System.Windows.Input.StylusPointDescription DefaultStylusPointDescription { get; set; }
member this.DefaultStylusPointDescription : System.Windows.Input.StylusPointDescription with get, set
Public Property DefaultStylusPointDescription As StylusPointDescription

プロパティ値

InkCanvas のスタイラス ポイントの説明。

次の例では、 DefaultStylusPointDescription のストロークのスタイラス ポイントにInkCanvas、、YNormalPressureおよび TipButton プロパティが含まれるように をX設定します。

注意

に追加された後DefaultStylusPointDescriptionに にInkCanvas追加されたストロークのみが、追加のプロパティを含むに設定されます。

inkCanvas1.DefaultStylusPointDescription = new StylusPointDescription(
    new StylusPointPropertyInfo[] {
        new StylusPointPropertyInfo(StylusPointProperties.X),
        new StylusPointPropertyInfo(StylusPointProperties.Y),
        new StylusPointPropertyInfo(StylusPointProperties.NormalPressure),
        new StylusPointPropertyInfo(StylusPointProperties.TipButton)});
inkCanvas1.DefaultStylusPointDescription = New StylusPointDescription _
        (New StylusPointPropertyInfo() _
        {New StylusPointPropertyInfo(StylusPointProperties.X), _
         New StylusPointPropertyInfo(StylusPointProperties.Y), _
         New StylusPointPropertyInfo(StylusPointProperties.NormalPressure), _
         New StylusPointPropertyInfo(StylusPointProperties.TipButton)})

注釈

既定では、 にはストロークInkCanvasX属する各 StylusPoint プロパティの 、Y、および NormalPressure プロパティのみが格納されます。 DefaultStylusPointDescription プロパティを使用すると、 のストロークを構成するポイントに関する追加情報を InkCanvas格納できます。 このプロパティを設定すると、プロパティが設定された後に行われる新しいストロークにのみ影響します。

XAML テキストの使用法

XAML では、このプロパティを使用できません。

適用対象

こちらもご覧ください