IsChatInputBlocked
		
		
		
		Jump to navigation
		Jump to search
		
20898
Syntax
bool isChatInputBlocked ( )
Returns
Returns true if the chat input is blocked, false otherwise.
Example
This example shows how to block and unblock the chat input:
function toggleInputBlocked ()
    local visible = isChatVisible () -- check if the chat is visible
    showChat (visible, not isChatInputBlocked ()) -- toggle inputBlocked
end
addCommandHandler("blockchat", toggleInputBlocked)
Requirements
This template will be deleted.
See Also
- clearDebugBox
 - isChatInputBlocked
 - isChatVisible
 - Shared
 - clearChatBox
 - outputChatBox
 - outputConsole
 - outputDebugString
 - showChat