PointAnimation.To プロパティ

定義

アニメーションの終了値を取得または設定します。

public:
 property IReference<Point> ^ To { IReference<Point> ^ get(); void set(IReference<Point> ^ value); };
IReference<Point> To();

void To(IReference<Point> value);
public System.Nullable<Point> To { get; set; }
var iReference = pointAnimation.to;
pointAnimation.to = iReference;
Public Property To As Nullable(Of Point)
<PointAnimation To="x,y"/>

プロパティ値

アニメーションの終了値。 既定値は null です

C# または Microsoft Visual Basic を使用してプログラミングする場合、このプロパティの型は Point と投影されますか?(null 許容 ポイント)。

注釈

PointAnimation には通常、FromBy、または To プロパティの少なくとも 1 つが設定されますが、3 つすべてが設定されることはありません。 詳細については、「 PointAnimation の解説」を参照してください。

null 既定値は、アニメーション化されていない基本値が To の既定値であり、アニメーション化された値がリテラルに null であることを示します。 アニメーション化されていない基本値は、実行時に依存関係プロパティ システムによって決定されます。 詳しくは、「依存関係プロパティの概要」をご覧ください。

適用対象