mirror of
https://github.com/ShrlAlgo/AddinManager.git
synced 2026-03-09 18:08:18 +00:00
添加项目文件。
This commit is contained in:
19
AddInManager/VisibilityMode.cs
Normal file
19
AddInManager/VisibilityMode.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
|
||||
namespace AddInManager
|
||||
{
|
||||
[Flags]
|
||||
public enum VisibilityMode
|
||||
{
|
||||
AlwaysVisible = 0,
|
||||
NotVisibleInProject = 1,
|
||||
NotVisibleInFamily = 2,
|
||||
NotVisibleWhenNoActiveDocument = 4,
|
||||
NotVisibleInArchitecture = 8,
|
||||
NotVisibleInStructure = 16,
|
||||
NotVisibleInMechanical = 32,
|
||||
NotVisibleInElectrical = 64,
|
||||
NotVisibleInPlumbing = 128,
|
||||
NotVisibleInMEP = 224
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user