MSFVectorElementDragResult

Objective-C

enum MSFVectorElementDragResult : NSInteger {}

Swift

enum MSFVectorElementDragResult : Int, @unchecked Sendable

The intended result of the drag operation.

  • Dragging should be ignored. The input event will be passed on to other handlers.

    Declaration

    Objective-C

    MSF_VECTOR_ELEMENT_DRAG_RESULT_IGNORE

    Swift

    case VECTOR_ELEMENT_DRAG_RESULT_IGNORE = 0
  • Dragging should be ignored. The input event is not passed on to other handlers.

    Declaration

    Objective-C

    MSF_VECTOR_ELEMENT_DRAG_RESULT_STOP

    Swift

    case VECTOR_ELEMENT_DRAG_RESULT_STOP = 1
  • The underlying vector element (or vertex) should be modified.

    Declaration

    Objective-C

    MSF_VECTOR_ELEMENT_DRAG_RESULT_MODIFY

    Swift

    case VECTOR_ELEMENT_DRAG_RESULT_MODIFY = 2
  • The underlying vector element or vertex should be deleted.

    Declaration

    Objective-C

    MSF_VECTOR_ELEMENT_DRAG_RESULT_DELETE

    Swift

    case VECTOR_ELEMENT_DRAG_RESULT_DELETE = 3