MSFVectorElementDragPointStyle

Objective-C

enum MSFVectorElementDragPointStyle : NSInteger {}

Swift

enum MSFVectorElementDragPointStyle : Int, @unchecked Sendable

Different types of styles for control points created for selected vector elements.

  • Normal control point. Corresponds to vertex.

    Declaration

    Objective-C

    MSF_VECTOR_ELEMENT_DRAG_POINT_STYLE_NORMAL

    Swift

    case VECTOR_ELEMENT_DRAG_POINT_STYLE_NORMAL = 0
  • Virtual control point (midpoint between actual vertices). Used for lines and polygons.

    Declaration

    Objective-C

    MSF_VECTOR_ELEMENT_DRAG_POINT_STYLE_VIRTUAL

    Swift

    case VECTOR_ELEMENT_DRAG_POINT_STYLE_VIRTUAL = 1
  • Selected control point.

    Declaration

    Objective-C

    MSF_VECTOR_ELEMENT_DRAG_POINT_STYLE_SELECTED

    Swift

    case VECTOR_ELEMENT_DRAG_POINT_STYLE_SELECTED = 2