using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PaintDotNet.Annotation.Enum { /// /// 测量属性枚举 /// public enum MeasureAttributes { /// /// 全部属性 /// ALL, /// /// 测量方式 /// MeasureMethod, /// /// 测量单位 中文 /// MeasureUnitCN, /// /// 测量单位 英文 /// MeasureUnitEN, /// /// 像素起始点X /// PixelStartX, /// /// 像素起始点Y /// PixelStartY, /// /// 物理起始点X /// PhysicalStartX, /// /// 物理起始点Y /// PhysicalStartY, /// /// 像素长度 /// PixelLength, /// /// 物理长度 /// PhysicalLength, /// /// 像素平均截距 /// PixelAverageIntercept, /// /// 物理平均截距 /// PhysicalAverage, /// /// 线段数 /// NumberOfSegments, /// /// 像素距离 /// PixelDistance, /// /// 物理距离 /// PhysicalDistance, /// /// 像素平均距离 /// PixelAverageDistance, /// /// 物理平均距离 /// PhysicalAverageDistance, /// /// 边数 /// NumberOfEdges, /// /// 像素面积 /// PixelArea, /// /// 物理面积 /// PhysicalArea, /// /// 像素周长 /// PixelCircumference, /// /// 物理周长 /// PhysicalCircumference, /// /// 像素圆心X /// PixelCenterX, /// /// 像素圆心Y /// PixelCenterY, /// /// 物理圆心X /// PhysicalCenterX, /// /// 物理圆心Y /// PhysicalCenterY, /// /// 像素半径 /// PixelRadius, /// /// 物理半径 /// PhysicalRadius, /// /// 像素直径 /// PixelDiameter, /// /// 物理直径 /// PhysicalDiameter, /// /// 角度 /// Angle, /// /// 像素弧长 /// PixelArcLength, /// /// 物理弧长 /// PhysicalArcLength, /// /// 跟随线 /// FollowLine } }