다음을 통해 공유


SpatialGestureRecognizer.ManipulationStarted 이벤트

정의

조작이 조작 제스처가 될 때 발생합니다.

// Register
event_token ManipulationStarted(TypedEventHandler<SpatialGestureRecognizer, SpatialManipulationStartedEventArgs const&> const& handler) const;

// Revoke with event_token
void ManipulationStarted(event_token const* cookie) const;

// Revoke with event_revoker
SpatialGestureRecognizer::ManipulationStarted_revoker ManipulationStarted(auto_revoke_t, TypedEventHandler<SpatialGestureRecognizer, SpatialManipulationStartedEventArgs const&> const& handler) const;
public event TypedEventHandler<SpatialGestureRecognizer,SpatialManipulationStartedEventArgs> ManipulationStarted;
function onManipulationStarted(eventArgs) { /* Your code */ }
spatialGestureRecognizer.addEventListener("manipulationstarted", onManipulationStarted);
spatialGestureRecognizer.removeEventListener("manipulationstarted", onManipulationStarted);
- or -
spatialGestureRecognizer.onmanipulationstarted = onManipulationStarted;
Public Custom Event ManipulationStarted As TypedEventHandler(Of SpatialGestureRecognizer, SpatialManipulationStartedEventArgs) 

이벤트 유형

설명

손 상호 작용의 경우 손가락이 눌린 다음 작은 조작 데드 존 외부로 이동할 때 SpatialManipulationStartedEventArgs 이벤트가 발생합니다.

음성 및 모션 컨트롤러 상호 작용의 경우 이 이벤트가 발생하지 않습니다.

적용 대상