Command: ole.Decoration(decoration,text);
Syntax: ole.Decoration(int decoration,string text);
Return: string
Make a text bold, italic or underline. The decoration argument values are:
1-for bold
2-for italic
3-for underline
Example:
//set the text decoration as bold+underline
var message=ole.Decoration(13,"Hello world");
ole.Msg("Joe",message);
//set the text decoration as italic
message=ole.Decoration(2,"Hello world");
ole.Msg("Mike",message);