283e98faa0
* Fix building for 2023 revit fakes * add Revit 2022 * fmt
24 lines
530 B
C#
24 lines
530 B
C#
namespace Autodesk.Revit.DB;
|
|
|
|
public enum CompoundStructureError
|
|
{
|
|
BadShellOrder,
|
|
CoreTooThin,
|
|
MembraneTooThick,
|
|
NonmembraneTooThin,
|
|
BadShellsStructure,
|
|
ThinOuterLayer,
|
|
VerticalUnusedLayer,
|
|
VerticalWrongOrderLayer,
|
|
VerticalWrongOrderCoreExterior,
|
|
VerticalWrongOrderCoreInterior,
|
|
VerticalWrongOrderMembrane,
|
|
DeckCantBoundAbove,
|
|
DeckCantBoundBelow,
|
|
VarThickLayerCantBeZero,
|
|
InvalidMaterialId,
|
|
ExtensibleRegionsNotContiguousAlongTop,
|
|
ExtensibleRegionsNotContiguousAlongBottom,
|
|
InvalidProfileId,
|
|
}
|