优化更新代码,添加界面功能并整合
This commit is contained in:
45
ShrlAlgo.RvKits/RvView/UserViewType.cs
Normal file
45
ShrlAlgo.RvKits/RvView/UserViewType.cs
Normal file
@@ -0,0 +1,45 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace ShrlAlgo.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
|
||||
}
|
||||
Reference in New Issue
Block a user