21 lines
376 B
C#
21 lines
376 B
C#
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,
|
|
}
|
|
}
|