BacksideTemplateText.cs 964 Bytes
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;

namespace MoyaAdminLib
{
    public class BacksideTemplateText
    {
        private string name;
        public string Name;

        private string txt;
        public string Txt
        {
            get { return txt; }
            set { txt = value; }
        }

        private float x;
        public float X
        {
            get { return x; }
            set { x = value; }
        }

        private float y;
        public float Y
        {
            get { return y; }
            set { y = value; }
        }

        private string fontName;
        public string FontName
        {
            get { return fontName; }
            set { fontName = value; }
        }

        private float fontSize;
        public float FontSize
        {
            get { return fontSize; }
            set { fontSize = value; }
        }
    }
}