DSDrawingItemClickListener
The DSDrawingItemClickListener
protocol includes methods for monitoring the click events of the DrawingItems
.
Definition
Assembly: DynamsoftCore.xcframework
- Objective-C
- Swift
@protocol DSDrawingItemClickListener <NSObject>
protocol DrawingItemClickListener : NSObjectProtocol
Methods
Method | Description |
---|---|
onClicked |
The method for monitoring the click events of the DrawingItems and receiving call. |
onClicked
The method for monitoring the click events of the DrawingItems
and receiving call.
- Objective-C
- Swift
- (void)onClicked:(DSDrawingItem *)clickedItem;
func onClicked(_ clickedItem: DrawingItem)
Parameters
clickedItem
: The clicked DrawingItems.