IInertiaProcessor::Complete 메서드(manipulations.h)
Complete 메서드는 현재 조작을 완료하고 관성 프로세서에서 관성 상태를 중지합니다.
구문
HRESULT Complete();
반환 값
성공하면 S_OK 반환하고, 그렇지 않으면 E_FAIL 같은 오류 코드를 반환합니다.
설명
Complete 메서드는 _IManipulationEvents 인터페이스 구현에서 ManipulationCompleted 이벤트를 발생합니다.
예제
// set properties on the IInertiaProcessor interface
this->m_spIInertProc->put_DesiredRotation(spin);
// complete any unprocessed inertia
this->m_spIInertProc->Complete();
// reset the processor
this->m_spIInertProc->Reset();
// If you have implemented a timer that handles inertia processing,
// this should be started as well and the processor will raise
// Manipulation* events
요구 사항
요구 사항 | 값 |
---|---|
지원되는 최소 클라이언트 | Windows 7 [데스크톱 앱만 해당] |
지원되는 최소 서버 | Windows Server 2008 R2 [데스크톱 앱만 해당] |
대상 플랫폼 | Windows |
헤더 | manipulations.h(Manipulations.h 포함) |