Ejemplo n.º 1
0
        public static void Draw(DrawerLine Line, DrawerOptions Options)
        {
            DrawerContent Content = new DrawerContent();

            Content.AppendLine(Line);
            Draw(Content, Options);
        }
Ejemplo n.º 2
0
        public void AppendLine(String Text, ConsoleColor Color)
        {
            DrawerLine S = new DrawerLine();

            S.DefaultForegroundColor = Color;
            S += Text;
            _Lines.Add(S);
        }
Ejemplo n.º 3
0
        public static void Draw(String Text, ConsoleColor Color, Int32 Left, Int32 Top)
        {
            DrawerContent Content = new DrawerContent();
            DrawerOptions Options = new DrawerOptions()
            {
                Left = Left, Top = Top
            };
            DrawerLine Line = new DrawerLine(Text, Color);

            Content.AppendLine(Line);
            Draw(Content, Options);
        }
Ejemplo n.º 4
0
 public void AppendLine(DrawerLine S)
 {
     _Lines.Add(S);
 }
Ejemplo n.º 5
0
 public void Append(DrawerLine Text)
 {
     _Lines[_Lines.Count - 1].Chars.AddRange(Text.Chars);
 }