Ejemplo n.º 1
0
 public void RemoveStyleCommand(PrintingStyle style)
 {
     m_Styles.Remove(style);
 }
 /// <summary>
 /// Prints the line of text.
 /// </summary>
 /// <param name='text'>
 /// Text to print.
 /// </param>
 /// <param name='style'>
 /// Style of the text.
 /// </param> 
 public void WriteLine(string text, PrintingStyle style)
 {
     WriteLine(text,(byte)style);
 }
Ejemplo n.º 3
0
 public void AddStyleCommand(PrintingStyle style)
 {
     m_Styles.Add(style);
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Prints the line of text.
 /// </summary>
 /// <param name='text'>
 /// Text to print.
 /// </param>
 /// <param name='style'>
 /// Style of the text.
 /// </param>
 public void WriteLine(string text, PrintingStyle style)
 {
     WriteLine(text, (byte)style);
 }