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_NORMALSwift
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_VIRTUALSwift
case VECTOR_ELEMENT_DRAG_POINT_STYLE_VIRTUAL = 1 -
Selected control point.
Declaration
Objective-C
MSF_VECTOR_ELEMENT_DRAG_POINT_STYLE_SELECTEDSwift
case VECTOR_ELEMENT_DRAG_POINT_STYLE_SELECTED = 2