다음을 통해 공유


PointAnimation.From 속성

정의

애니메이션의 시작 값을 가져오거나 설정합니다.

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

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

속성 값

애니메이션의 시작 값입니다. 기본값은 null입니다.

C#또는 Microsoft Visual Basic을 사용하여 프로그래밍하는 경우 이 속성의 형식이 Point로 프로젝팅됩니다 .(nullable Point).

설명

PointAnimation에는 일반적으로 From, By 또는 To 속성 집합 중 하나 이상이 있지만 세 가지 모두 설정되지는 않습니다. 자세한 내용은 PointAnimation의 비고를 참조하세요.

null 기본값은 애니메이션이 적용되지 않은 기본 값이 From의 기본값이며 애니메이션 값이 문자 그대로 null이 아님을 나타냅니다. 애니메이션이 적용되지 않은 기본 값은 런타임에 종속성 속성 시스템에 의해 결정됩니다. 자세한 내용은 종속성 속성 개요를 참조하세요.

적용 대상