C# Class ExamplesFx.ColorCode.CodeColorizer

Colorizes source code.
Inheritance: ICodeColorizer
Show file Open project: MarcosMeli/ExamplesFx Class Usage Examples

Public Methods

Method Description
CodeColorizer ( ) : System

Initializes a new instance of the CodeColorizer class.

CodeColorizer ( ILanguageParser languageParser ) : System

Initializes a new instance of the CodeColorizer class.

Colorize ( string sourceCode, ILanguage language ) : string

Colorizes source code using the specified language, the default formatter, and the default style sheet.

Colorize ( string sourceCode, ILanguage language, IFormatter formatter, IStyleSheet styleSheet, TextWriter textWriter ) : void

Colorizes source code using the specified language, formatter, and style sheet.

Colorize ( string sourceCode, ILanguage language, TextWriter textWriter ) : void

Colorizes source code using the specified language, the default formatter, and the default style sheet.

Method Details

CodeColorizer() public method

Initializes a new instance of the CodeColorizer class.
public CodeColorizer ( ) : System
return System

CodeColorizer() public method

Initializes a new instance of the CodeColorizer class.
public CodeColorizer ( ILanguageParser languageParser ) : System
languageParser ILanguageParser The language parser that the instance will use for its lifetime.
return System

Colorize() public method

Colorizes source code using the specified language, the default formatter, and the default style sheet.
public Colorize ( string sourceCode, ILanguage language ) : string
sourceCode string The source code to colorize.
language ILanguage The language to use to colorize the source code.
return string

Colorize() public method

Colorizes source code using the specified language, formatter, and style sheet.
public Colorize ( string sourceCode, ILanguage language, IFormatter formatter, IStyleSheet styleSheet, TextWriter textWriter ) : void
sourceCode string The source code to colorize.
language ILanguage The language to use to colorize the source code.
formatter IFormatter The formatter to use to colorize the source code.
styleSheet IStyleSheet The style sheet to use to colorize the source code.
textWriter System.IO.TextWriter The text writer to which the colorized source code will be written.
return void

Colorize() public method

Colorizes source code using the specified language, the default formatter, and the default style sheet.
public Colorize ( string sourceCode, ILanguage language, TextWriter textWriter ) : void
sourceCode string The source code to colorize.
language ILanguage The language to use to colorize the source code.
textWriter System.IO.TextWriter The text writer to which the colorized source code will be written.
return void