duheng
2024-12-30 8a026ce4a5be2c045b663b5f2113f6149c88f52d
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
namespace Yw.WinFrmUI.Phart
{
    public class TextDispParasModel
    {
        public TextDispParasModel() { } 
        public TextDispParasModel(double x,double y,string txt) 
        {
            this.X = x;
            this.Y = y;
            this.Text = txt;
        }
 
        /// <summary>
        /// X轴值
        /// </summary>
        public double X { get; set; }
 
        /// <summary>
        /// Y轴值
        /// </summary>
        public double Y { get; set; }
 
        /// <summary>
        /// 文本
        /// </summary>
        public string Text { get; set; }
 
        /// <summary>
        /// 角度
        /// </summary>
        public int Angle { get; set; }
 
        /// <summary>
        /// 文本对齐方式
        /// </summary>
        public eTextAligment Aligment { get; set; }
 
        /// <summary>
        /// 标签
        /// </summary>
        public string Tag { get; set; }
 
 
 
    }
}