PathKeyFrameAnimation.InsertKeyFrame 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
InsertKeyFrame(Single, CompositionPath) |
키 프레임을 삽입합니다. |
InsertKeyFrame(Single, CompositionPath, CompositionEasingFunction) |
지정된 감속/가속을 사용하여 키 프레임을 삽입합니다. |
InsertKeyFrame(Single, CompositionPath)
키 프레임을 삽입합니다.
public:
virtual void InsertKeyFrame(float normalizedProgressKey, CompositionPath ^ path) = InsertKeyFrame;
/// [Windows.Foundation.Metadata.Overload("InsertKeyFrame")]
void InsertKeyFrame(float const& normalizedProgressKey, CompositionPath const& path);
[Windows.Foundation.Metadata.Overload("InsertKeyFrame")]
public void InsertKeyFrame(float normalizedProgressKey, CompositionPath path);
function insertKeyFrame(normalizedProgressKey, path)
Public Sub InsertKeyFrame (normalizedProgressKey As Single, path As CompositionPath)
매개 변수
- normalizedProgressKey
-
Single
float
애니메이션 기간의 백분율로 표현된 키 프레임이 발생하는 시간입니다. 허용되는 값은 0.0에서 1.0까지입니다.
- path
- CompositionPath
키 프레임의 값을 정의하는 데 사용되는 경로입니다.
- 특성
적용 대상
InsertKeyFrame(Single, CompositionPath, CompositionEasingFunction)
지정된 감속/가속을 사용하여 키 프레임을 삽입합니다.
public:
virtual void InsertKeyFrame(float normalizedProgressKey, CompositionPath ^ path, CompositionEasingFunction ^ easingFunction) = InsertKeyFrame;
/// [Windows.Foundation.Metadata.Overload("InsertKeyFrameWithEasingFunction")]
void InsertKeyFrame(float const& normalizedProgressKey, CompositionPath const& path, CompositionEasingFunction const& easingFunction);
[Windows.Foundation.Metadata.Overload("InsertKeyFrameWithEasingFunction")]
public void InsertKeyFrame(float normalizedProgressKey, CompositionPath path, CompositionEasingFunction easingFunction);
function insertKeyFrame(normalizedProgressKey, path, easingFunction)
Public Sub InsertKeyFrame (normalizedProgressKey As Single, path As CompositionPath, easingFunction As CompositionEasingFunction)
매개 변수
- normalizedProgressKey
-
Single
float
애니메이션 기간의 백분율로 표현된 키 프레임이 발생하는 시간입니다. 허용되는 값은 0.0에서 1.0까지입니다.
- path
- CompositionPath
키 프레임의 값을 정의하는 데 사용되는 경로입니다.
- easingFunction
- CompositionEasingFunction
프레임 간에 보간할 때 사용할 감속/가속 함수입니다.
- 특성