Skip to main content

system.kanoa.dashboard.deleteMarqueeDisplay

This function is part of the kanoaCore module

Description

Deletes a marquee display.

Syntax

deleteMarqueeDisplay(marqueeDisplayId, userId)
  • Parameters
      marqueeDisplayId (int)
      int userId - User ID
  • Returns
      number of records modified (int)
      msg (string): error message, None if successful
  • Code Examples

    # Example usage
    userId = 123
    marqueeDisplayId = 4
    retVal, msg = system.kanoa.dashboard.deleteMarqueeDisplay(marqueeDisplayId, userId)
    if msg: system.perspective.sendMessage('showFailerToast', msg)
    else: system.perspective.sendMessage('showSuccessfulToast', 'Marquee display has been deleted')