BacksideTemplateText.cs
964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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; }
}
}
}