contextMenuInteractionEnabled property

bool get contextMenuInteractionEnabled

Specifies if the context menu interaction is enabled. NO by default.

Implementation

bool get contextMenuInteractionEnabled {
  objc.checkOsVersionInternal('UIControl.isContextMenuInteractionEnabled', iOS: (false, (14, 0, 0)));
  return _objc_msgSend_91o635(this.ref.pointer, _sel_isContextMenuInteractionEnabled);
}
set contextMenuInteractionEnabled (bool value)

Specifies if the context menu interaction is enabled. NO by default.

Implementation

set contextMenuInteractionEnabled(bool value) {
  objc.checkOsVersionInternal('UIControl.setContextMenuInteractionEnabled:', iOS: (false, (14, 0, 0)));
  _objc_msgSend_1s56lr9(this.ref.pointer, _sel_setContextMenuInteractionEnabled_, value);
}