world.SetOutputFont

MUSHclient script function (Method)

Sets the font for the output window.

Prototype

void SetOutputFont(BSTR FontName, short PointSize);

Data type meanings

Description

Use this to change the output font. The *entire* window font changes, you cannot change individual lines or words.

Also see SetInputFont.

VBscript example

world.SetOutputFont "Lucida Console", 9

Jscript example

world.SetOutputFont("Lucida Console", 9);

PerlScript example

$world->SetOutputFont("Lucida Console", 9);

Python example

world.SetOutputFont("Lucida Console", 9)

Lua example

SetOutputFont ("Lucida Console", 9)

Return value

Nothing.

Related topic

Option setting and retrieval

See also

FunctionDescription
SetInputFontSets the font for the input window