343e627737
* basics for revit 2024 * run generator first time * copied fill ins from 2023
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,
|
|
}
|