StylusDevice.ActiveSource プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
スタイラスの現在の入力を報告する PresentationSource を取得します。
public:
virtual property System::Windows::PresentationSource ^ ActiveSource { System::Windows::PresentationSource ^ get(); };
public override System.Windows.PresentationSource ActiveSource { [System.Security.SecurityCritical] get; }
public override System.Windows.PresentationSource ActiveSource { get; }
[<get: System.Security.SecurityCritical>]
member this.ActiveSource : System.Windows.PresentationSource
member this.ActiveSource : System.Windows.PresentationSource
Public Overrides ReadOnly Property ActiveSource As PresentationSource
プロパティ値
スタイラスの現在の入力を報告する PresentationSource。
- 属性
例
ActiveSourceプロパティの例を次に示します。
PresentationSource myPresentationSource = myStylusDevice.ActiveSource;
if (null == myPresentationSource)
{
textbox1.AppendText("ActiveSource : null\n");
}
else
{
textbox1.AppendText("ActiveSource :" + myPresentationSource.ToString() + "\n");
}
Dim myPresentationSource As PresentationSource = myStylusDevice.ActiveSource
If IsNothing(myPresentationSource) Then
textbox1.AppendText("ActiveSource : null" + vbCrLf)
Else
textbox1.AppendText("ActiveSource :" + myPresentationSource.ToString() + vbCrLf)
End If
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET