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) |