Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration ChatUICommand

Feature toggle commands for controlling ChatUI behavior

description

Use these commands with setCommandSwitch() to enable/disable specific features

example
// Enable message read status display
app.setCommandSwitch(ChatUICommand.SHOW_MESSAGE_STATE, true);

// Enable @all functionality
app.setCommandSwitch(ChatUICommand.AT_ALL, true);

Index

Enumeration Members

SHOW_CONNECTION_STATUS_IN_CHANNEL_LIST: "SHOW_CONNECTION_STATUS_IN_CHANNEL_LIST"

Show connection status in the channel list

  • true - Show (Default)
  • false - Hide
SHOW_MESSAGE_STATE: "SHOW_MESSAGE_STATE"

Show message read and sent status

  • true - Enable (Default)
  • false - Disable, only show sending and failed status
AT_ALL: "AT_ALL"

'@all' functionality toggle

  • true - Enable (Default)
  • false - Disable
PROMPT_SENDER_WHEN_QUOTE_MESSAGE: "PROMPT_SENDER_WHEN_QUOTE_MESSAGE"

Automatically @ the sender when quoting or replying to a message

  • true - Enable
  • false - Disable (Default)
DELETE_MESSAGES_WHILE_DELETE_CHANNEL: "DELETE_MESSAGES_WHILE_DELETE_CHANNEL"

Delete local and remote messages when deleting a channel

  • true - Enable
  • false - Disable (Default)