46 lines
772 B
C#
46 lines
772 B
C#
|
|
using System.ComponentModel;
|
|||
|
|
|
|||
|
|
namespace Sai.RvKits.RvView;
|
|||
|
|
|
|||
|
|
public enum UserViewType
|
|||
|
|
{
|
|||
|
|
[Description("楼层平面")]
|
|||
|
|
FloorPlan = 1,
|
|||
|
|
|
|||
|
|
[Description("天花视图")]
|
|||
|
|
CeilingPlan = 2,
|
|||
|
|
|
|||
|
|
[Description("立面")]
|
|||
|
|
Elevation = 3,
|
|||
|
|
|
|||
|
|
[Description("三维视图")]
|
|||
|
|
ThreeD = 4,
|
|||
|
|
|
|||
|
|
[Description("明细表")]
|
|||
|
|
Schedule = 5,
|
|||
|
|
|
|||
|
|
[Description("图纸")]
|
|||
|
|
DrawingSheet = 6,
|
|||
|
|
|
|||
|
|
[Description("绘制视图")]
|
|||
|
|
DraftingView = 10,
|
|||
|
|
|
|||
|
|
[Description("图例")]
|
|||
|
|
Legend = 11,
|
|||
|
|
|
|||
|
|
[Description("结构平面")]
|
|||
|
|
EngineeringPlan = 115,
|
|||
|
|
|
|||
|
|
[Description("面积平面")]
|
|||
|
|
AreaPlan = 116,
|
|||
|
|
|
|||
|
|
[Description("剖面")]
|
|||
|
|
Section = 117,
|
|||
|
|
|
|||
|
|
[Description("详图视图")]
|
|||
|
|
Detail = 118,
|
|||
|
|
|
|||
|
|
[Description("渲染")]
|
|||
|
|
Rendering = 125
|
|||
|
|
}
|