Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[pde-dev] Adding color to console

How do i change the color of the text in the default console.
 
I am using this code to get the default console
    MessageConsole oConsole = new MessageConsole(str,null);
    ConsolePlugin.getDefault().getConsoleManager().addConsoles(new IConsole[]{oConsole});
    oStream = oConsole.newMessageStream();
 

Back to the top