public override void WriteOutput(string data)
 {
     OutputPane.Write(data);
 }
Exemple #2
0
 // --------------------------------------------------------------------------------------------
 /// <summary>
 /// Displays spaces according to the current indentation level and size.
 /// </summary>
 // --------------------------------------------------------------------------------------------
 private static void DisplayIndent()
 {
     OutputPane.Write(string.Empty.PadLeft(IndentLevel * IndentSize, ' '));
 }