2024-09-22 11:05:41 +08:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
2025-04-24 20:56:44 +08:00
|
|
|
|
namespace ShrlAlgoToolkit.RevitAddins.RvView;
|
2024-09-22 11:05:41 +08:00
|
|
|
|
|
|
|
|
|
|
public enum UserDisplayStyle
|
|
|
|
|
|
{
|
|
|
|
|
|
[Description("线框")]
|
|
|
|
|
|
Wireframe = 1,
|
|
|
|
|
|
|
|
|
|
|
|
[Description("隐藏线")]
|
|
|
|
|
|
HLR = 2,
|
|
|
|
|
|
|
|
|
|
|
|
[Description("着色")]
|
|
|
|
|
|
Shading = 3,
|
|
|
|
|
|
|
|
|
|
|
|
[Description("带边缘着色")]
|
|
|
|
|
|
ShadingWithEdges = 4,
|
|
|
|
|
|
|
|
|
|
|
|
[Description("一致的颜色")]
|
|
|
|
|
|
FlatColors = 7,
|
|
|
|
|
|
|
|
|
|
|
|
[Description("真实")]
|
|
|
|
|
|
RealisticWithEdges = 8,
|
|
|
|
|
|
}
|