InkCanvas.DefaultStylusPointDescription プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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、、Y、NormalPressureおよび 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)})
注釈
既定では、 にはストロークInkCanvasにX属する各 StylusPoint プロパティの 、Y、および NormalPressure プロパティのみが格納されます。 DefaultStylusPointDescription プロパティを使用すると、 のストロークを構成するポイントに関する追加情報を InkCanvas格納できます。 このプロパティを設定すると、プロパティが設定された後に行われる新しいストロークにのみ影響します。
XAML テキストの使用法
XAML では、このプロパティを使用できません。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET