mirror of
https://github.com/ShrlAlgo/AddinManager.git
synced 2026-03-08 00:48:56 +00:00
20 lines
450 B
C#
20 lines
450 B
C#
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
|
|
}
|
|
}
|