StylusPoint.Explicit(StylusPoint to Point) Operator
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した StylusPoint を Point にキャストします。
public:
static explicit operator System::Windows::Point(System::Windows::Input::StylusPoint stylusPoint);
public static explicit operator System.Windows.Point (System.Windows.Input.StylusPoint stylusPoint);
static member op_Explicit : System.Windows.Input.StylusPoint -> System.Windows.Point
Public Shared Narrowing Operator CType (stylusPoint As StylusPoint) As Point
パラメーター
- stylusPoint
- StylusPoint
StylusPoint にキャストする Point。
戻り値
stylusPoint
と同じ (x,y) 座標を含む Point。
注釈
次の例では、 を オブジェクトにキャスト StylusPoint して、 Point すべてのストロークの先頭に円を描画する方法を示します。 この例では、 というinkcanvas1
オブジェクトがありInkCanvas、この例のStylusDownイベント ハンドラーにイベントが接続されていることを前提としています。
:::code language="csharp" source="~/snippets/csharp/System.Windows.Input/StylusDevice/GetStylusPoints/Window1.xaml.cs" id="Snippet13":::
:::code language="vb" source="~/snippets/visualbasic/VS_Snippets_Wpf/PacketSpy/VisualBasic/Window1.xaml.vb" id="Snippet13":::
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET