MSFUTFGridEventListener

Objective-C


@interface MSFUTFGridEventListener : NSObject {
  void *swigCPtr;
  BOOL swigCMemOwn;
}

Swift

class MSFUTFGridEventListener : NSObject

Listener for vector element events like clicks etc.

  • Listener method that gets called when a click is performed on an UTF grid element. If the method returns true, all subsequent layers are ignored and click event is not passed down. This method will NOT be called from the main thread.

    Declaration

    Objective-C

    - (BOOL)onUTFGridClicked:(MSFUTFGridClickInfo *)clickInfo;

    Swift

    func onUTFGridClicked(_ clickInfo: MSFUTFGridClickInfo!) -> Bool

    Parameters

    clickInfo

    A container that provides information about the click.

    Return Value

    True if the click is handled and subsequent layers do not need to be notified.

  • Listener method that gets called when a click is performed on an UTF grid element. If the method returns true, all subsequent layers are ignored and click event is not passed down. This method will NOT be called from the main thread.

    Declaration

    Objective-C

    - (BOOL)onUTFGridClickedSwigExplicitMSFUTFGridEventListener:
        (MSFUTFGridClickInfo *)clickInfo;

    Swift

    func onUTFGridClickedSwigExplicitMSFUTFGridEventListener(_ clickInfo: MSFUTFGridClickInfo!) -> Bool

    Parameters

    clickInfo

    A container that provides information about the click.

    Return Value

    True if the click is handled and subsequent layers do not need to be notified.

  • Undocumented

    Declaration

    Objective-C

    -(id)init;

    Swift

    init!()
  • Undocumented

    Declaration

    Objective-C

    -(void)dealloc;

    Swift

    func dealloc()