DRAG EVENT 한국어 뜻 - 한국어 번역

[dræg i'vent]
[dræg i'vent]

영어에서 Drag event 을 사용하는 예와 한국어로 번역

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Ecclesiastic category close
  • Programming category close
  • Computer category close
The drag event listener and callback method.
드래그 이벤트 리스너 및 콜백 메서드.
This tells the system to start sending drag events.
그러면 드래그 이벤트 전송 작업을 시작하도록 시스템에 지시됩니다.
Drag events happen when you finally let go of the button.
드래그 이벤트는 버튼을 최종적으로 놓을 때 발생한다.
The system sends out a drag event in the form of a DragEvent object.
시스템은 드래그 이벤트를 DragEvent 객체 형태로 전송합니다.
When you get a button-down event, a corresponding click or drag event will always follow.
버튼다운 이벤트를 얻으면 그에 해당하는 클릭이나 마우스 이벤트가 항상 따를 것이다.
All drag events are initially received by your drag event method or listener.
모든 드래그 이벤트는 드래그 이벤트 메서드나 리스너에 의해 처음 수신됩니다.
This tells the system to continue to send drag events to the listener.
이는 시스템에 드래그 이벤트를 리스너로 계속 보내도록 지시합니다.
The framework includes a drag event class, drag listeners, and helper methods and classes.
이 프레임워크에는 드래그 이벤트 클래스, 드래그 리스너, 도우미 메서드 및 클래스가 포함되어 있습니다.
Both of these are described in more detail in the section The drag event listener and callback method.
드래그 이벤트 리스너와 콜백 메서드 모두에 대한 설명은 드래그 이벤트 리스너 및 콜백 메서드 섹션에 자세히 나와 있습니다.
The drag event contains the data that was passed to the system in the call to startDrag() that started the operation.
드래그 이벤트에는 작업을 시작한 startDrag() 에 대한 호출에서 시스템에 전달된 데이터를 포함합니다.
The system sends the View object's listener a drag event with action type ACTION_DROP.
그러면 시스템이 View 객체의 리스너에 작업 유형이 ACTION_DROP 인 드래그 이벤트를 보냅니다.
To continue to receive drag events, including a possible drop event, a drag event listener must return true.
가능한 드롭 이벤트를 포함하여 드래그 이벤트 수신을 계속하려면 드래그 이벤트 리스너가 true 를 반환해야 합니다.
If the user releases the drag shadow in any other situation, no ACTION_DROP drag event is sent.
사용자가 이외의 모든 상황에서 드래그 섀도우를 놓는 경우에는 ACTION_DROP 드래그 이벤트가 전송되지 않습니다.
If the listener wants to continue receiving drag events for this operation, it must return boolean true to the system.
리스너가 이 작업에 대한 드래그 이벤트를 계속해서 수신하기를 원하는 경우 부울 값 true 를 시스템에 반환해야 합니다.
If the drag event listener returns false, then it will not receive drag events for the current operation until the system sends a drag event with action type ACTION_DRAG_ENDED.
드래그 이벤트 리스너가 false 를 반환하면 시스템이 작업 유형이 ACTION_DRAG_ENDED 인 드래그 이벤트를 보낼 때까지 현재 작업에 대한 드래그 이벤트를 수신하지 않습니다.
During the drag, listeners primarily use drag events to decide if they should change the appearance of their View.
드래그 작업 중에 리스너는 주로 드래그 이벤트를 사용하여 뷰의 모양을 변경해야 하는지 여부를 결정합니다.
If the user drops the data over a View object, and that View object's listener or callback method has previously told the system that it wants to accept the drop, then the system sends the data to the listener or callback method in a drag event.
사용자가 View 객체 위로 데이터를 드롭하고 해당 View 객체의 리스너 또는 콜백 메서드가 이미 시스템에 드롭을 수락하기를 원한다고 알렸으면 시스템이 드래그 이벤트의 리스너 또는 콜백 메서드로 데이터를 보냅니다.
A View object's drag event listener receives this event action type when the system is ending the drag operation.
View 객체의 드래그 이벤트 리스너는 시스템이 드래그 작업을 종료할 때 이 이벤트 작업 유형을 수신합니다.
If it can't accept a drop,it should return false, and the system will stop sending drag events until it sends out ACTION_DRAG_ENDED.
드롭을 수락할 수 없으면 false 를 반환합니다.이 경우 시스템은 ACTION_DRAG_ENDED 를 전송할 때까지 드래그 이벤트 전송을 중지합니다.
A View object's drag event listener receives this event action type when the user releases the drag shadow over the View object.
View 객체의 드래그 이벤트 리스너는 사용자가 View 객체 위에 드래그 섀도우를 놓을 때 이 이벤트 작업 유형을 수신합니다.
The event is sent to every listener that is registered to receive drag events, even if the listener received the ACTION_DROP event..
이 이벤트는 리스너가 ACTION_DROP 이벤트를 수신한 경우에도 드래그 이벤트를 수신하도록 등록된 모든 리스너에게 전송됩니다.
A View object's drag event listener receives this event action type when the drag shadow has just entered the bounding box of the View.
View 객체의 드래그 이벤트 리스너는 드래그 섀도우가 뷰의 경계 상자에 막 진입했을 때 이 이벤트 작업 유형을 수신합니다.
DragEnter Occurs when the input system reports an underlying drag event with this element as the drag target.
입력 시스템에서 이 요소를 끌기 대상으로 사용하는 기본 끌기 이벤트를 보고하면 발생합니다. Occurs when the input system reports an underlying drag event with this element as the drag target.
A View object's drag event listener receives this event action type just after the application calls startDrag() and gets a drag shadow.
View 객체의 드래그 이벤트 리스너는 애플리케이션이 startDrag() 를 호출하고 드래그 섀도우를 가져온 직후에이벤트 작업 유형을 수신합니다.
As the drag shadow intersects the bounding box of a View object, the system sends one or more drag events to the View object's drag event listener(if it is registered to receive events)..
드래그 섀도우가 뷰 객체의 경계 상자를 교차하면 시스템이 하나 이상의 드래그 이벤트를 View 객체의 드래그 이벤트 리스너로 보냅니다(이벤트를 수신하도록 등록된 경우에 해당).
A View object's drag event listener receives this event action type after it receives a ACTION_DRAG_ENTERED event while the drag shadow is still within the bounding box of the View. ACTION_DRAG_EXITED.
View 객체의 드래그 이벤트 리스너는 드래그 섀도우가 여전히 뷰의 경계 상자 내에 있는 동안 ACTION_DRAG_ENTERED 이벤트를 수신한 후에 이 이벤트 작업 유형을 수신합니다. ACTION_DRAG_EXITED.
Immediately after the userreleases the drag shadow, the system sends a drag event to all of the drag event listeners in your application, with an action type of ACTION_DRAG_ENDED.
사용자가 드래그 섀도우를 놓은 후 즉시,시스템은 작업 유형 ACTION_DRAG_ENDED 와 함께 드래그 이벤트를 애플리케이션에 포함된 모든 드래그 이벤트 리스너로 전송합니다.
When the user releases the drag shadow on a View in the application, and that View previously reported that it could accept the content being dragged, the system dispatches a drag event to that View with the action type ACTION_DROP.
사용자가 애플리케이션에서 특정 뷰에 드래그 섀도우를 놓고, 해당 뷰가 이전에 드래그되는 콘텐츠를 수락할 수 있다고 보고한 경우 시스템이 작업 유형 ACTION_DROP 과 함께 해당 뷰에 드래그 이벤트를 발송합니다. 리스너는 다음 동작을 수행해야 합니다.
During the drag operation, the system dispatches drag events to the drag event listeners of the View objects in the current layout.
드래그 작업 도중, 시스템은 드래그 이벤트를 현재 레이아웃에 포함된 View 객체의 드래그 이벤트 리스너로 발송합니다.
A View object's drag event listener receives this event action type after it receives a ACTION_DRAG_ENTERED and at least one ACTION_DRAG_LOCATION event, and after the user has moved the drag shadow outside the bounding box of the View.
View 객체의 드래그 이벤트 리스너는 ACTION_DRAG_ENTERED 및 하나 이상의 ACTION_DRAG_LOCATION 이벤트를 수신한 후와 사용자가 뷰의 경계 상자 밖으로 드래그 섀도우를 이동한 후에 이 이벤트 작업 유형을 수신합니다.
결과: 86, 시각: 0.0323

문장에서 "drag event"을 사용하는 방법

drag Event Fired continuously during dragging.
The original draggable's drag event data.
drag Event type for dragging a legend.
Got back from a tough drag event tonight.
Vue 2.x directive plugin for drag event detection.
Marker drag event .latLng is no longer obfuscated.
Set UI drag event start interval in seconds.
Fixed a bug in ViewportGadget drag event propogation.
Drag Event Occurs when dragging a chart area.
Just drop the drag event in Firefox 24.

단어 번역에 의한 워드

최고 사전 질의

영어 - 한국어