iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCICaptureEventsGesture
@interface SCICaptureEventsGesture : SCIGestureRecognizer
#if TARGET_OS_OSX
<ISCITrackingAreaResponder>
/// Redeclare the default property to address modifier movement issues when using a mouse. Ticket #45619, #45614, #45612
@property(nonatomic,readwrite) NSGestureRecognizerState state;
#endif
/**
* Returns the mask which defines the buttons which was pressed during gesture recognition.
*/
@property (nonatomic, readonly) SCIButtonMask recognizedButtonMask;
@property(nonatomic, weak) id <SCICaptureEventsGestureDelegate> _Nullable captureEventDelegate;
@end
Undocumented
-
Returns the mask which defines the buttons which was pressed during gesture recognition.
Declaration
Objective-C
@property (nonatomic, readonly) SCIButtonMask recognizedButtonMask;Swift
var recognizedButtonMask: SCIButtonMask { get } -
Undocumented
Declaration
Objective-C
@property(nonatomic, weak) id <SCICaptureEventsGestureDelegate> _Nullable captureEventDelegateSwift
weak var captureEventDelegate: (any SCICaptureEventsGestureDelegate)? { get set }
View on GitHub