共用方式為


IInertiaProcessor::Complete 方法 (manipulations.h)

Complete 方法會完成目前的操作,並停止慣性處理器上的慣性。

Syntax

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)

另請參閱

CompleteTime

IInertiaProcessor

方法