Parent Object: TextCommandPalette Defined in namespace "adsk::core" and the header file is <Core/UserInterface/TextCommandPalette.h>
Description
Write the specified text to the TEXT COMMAND window.
Remarks
Below is some sample code that illustrates making sure the palette is visible and writing some text to it.
# Get the palette that represents the TEXT COMMANDS window.
textPalette = ui.palettes.itemById('TextCommands')
# Make sure the palette is visible.
if not textPalette.isVisible:
textPalette.isVisible = True
# Write some text.
textPalette.writeText('This is a text message.')