예제 #1
0
        // Add line with text
        public void Line(string text)
        {
            TextObject t = new TextObject();
            t.text = text;
            t.obj = "";

            textList.Add(t);
        }
예제 #2
0
        // Add line with value
        public void Line(string text, string show)
        {
            TextObject t = new TextObject();
            t.text = text + ":";
            t.obj = show;

            textList.Add(t);
        }
예제 #3
0
        /// <summary>
        /// Add empty line
        /// </summary>
        public void Line()
        {
            TextObject t = new TextObject();
            t.text = "";
            t.obj = "";

            textList.Add(t);
        }