writingstyle (text styling)

General info

the writing style class Is a class your going to use with almost everything your going to have to use in this package, because this class defines how the text your display to your console window is going to look. Like stuff from text style(bold, italic , .. e.g) and color of your chars so this is a very usefull class


How to use


object Creation

writingstyle style = new writingstyle(); // returns the default style

This code returns the default text style object: white text with black background and no forground color


Creating colored style object

writingstyle coloredStyle = new writingstyle(system.drawing.color.red);

this returns a style with color red


Last updated