This commit is contained in:
2025-10-29 11:42:58 +08:00
parent 7f6f84cd0e
commit a178c3550e
190 changed files with 81361 additions and 92 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FATrace.App.UniCodeToZPL
{
/// <summary>
/// 文字方向
/// </summary>
public enum TextDirection
{
Degree0 = 0,
Degree45 = 45,
Degree90 = 90,
Degree180 = 180,
Degree270 = 270,
}
}