|
| 1 | +class display_attribute: |
| 2 | + """ |
| 3 | + A wrapper class for managing element display states. |
| 4 | + These methods update the internal state of the attribute |
| 5 | + object without requiring external parameters. |
| 6 | + """ |
| 7 | + |
| 8 | + def __init__(self) -> None: |
| 9 | + """Initializes a new display_attribute instance.""" |
| 10 | + |
| 11 | + def set_none(self) -> None: |
| 12 | + """Resets or clears the current display attribute state. |
| 13 | +
|
| 14 | + Returns: |
| 15 | + None |
| 16 | + """ |
| 17 | + |
| 18 | + def set_name(self) -> None: |
| 19 | + """Triggers the assignment of the name attribute. |
| 20 | +
|
| 21 | + Returns: |
| 22 | + None |
| 23 | + """ |
| 24 | + |
| 25 | + def set_group(self) -> None: |
| 26 | + """Triggers the assignment of the group attribute. |
| 27 | +
|
| 28 | + Returns: |
| 29 | + None |
| 30 | + """ |
| 31 | + |
| 32 | + def set_subgroup(self) -> None: |
| 33 | + """Triggers the assignment of the subgroup attribute. |
| 34 | +
|
| 35 | + Returns: |
| 36 | + None |
| 37 | + """ |
| 38 | + |
| 39 | + def set_comment(self) -> None: |
| 40 | + """Triggers the assignment of the comment attribute. |
| 41 | +
|
| 42 | + Returns: |
| 43 | + None |
| 44 | + """ |
| 45 | + |
| 46 | + def set_edv_code(self) -> None: |
| 47 | + """Triggers the assignment of the EDV/ERP code. |
| 48 | +
|
| 49 | + Returns: |
| 50 | + None |
| 51 | + """ |
| 52 | + |
| 53 | + def set_material(self) -> None: |
| 54 | + """Triggers the assignment of the material attribute. |
| 55 | +
|
| 56 | + Returns: |
| 57 | + None |
| 58 | + """ |
| 59 | + |
| 60 | + def set_material_group(self) -> None: |
| 61 | + """Triggers the assignment of the material group attribute. |
| 62 | +
|
| 63 | + Returns: |
| 64 | + None |
| 65 | + """ |
| 66 | + |
| 67 | + def set_user1(self) -> None: |
| 68 | + """Triggers the assignment of custom user field 1.""" |
| 69 | + |
| 70 | + def set_user2(self) -> None: |
| 71 | + """Triggers the assignment of custom user field 2.""" |
| 72 | + |
| 73 | + def set_user3(self) -> None: |
| 74 | + """Triggers the assignment of custom user field 3.""" |
| 75 | + |
| 76 | + def set_user4(self) -> None: |
| 77 | + """Triggers the assignment of custom user field 4.""" |
| 78 | + |
| 79 | + def set_user5(self) -> None: |
| 80 | + """Triggers the assignment of custom user field 5.""" |
| 81 | + |
| 82 | + def set_user6(self) -> None: |
| 83 | + """Triggers the assignment of custom user field 6.""" |
| 84 | + |
| 85 | + def set_user7(self) -> None: |
| 86 | + """Triggers the assignment of custom user field 7.""" |
| 87 | + |
| 88 | + def set_user8(self) -> None: |
| 89 | + """Triggers the assignment of custom user field 8.""" |
| 90 | + |
| 91 | + def set_user9(self) -> None: |
| 92 | + """Triggers the assignment of custom user field 9.""" |
| 93 | + |
| 94 | + def set_user10(self) -> None: |
| 95 | + """Triggers the assignment of custom user field 10.""" |
| 96 | + |
| 97 | + def set_production_number(self) -> None: |
| 98 | + """Triggers the assignment of the production/fabrication number. |
| 99 | +
|
| 100 | + Returns: |
| 101 | + None |
| 102 | + """ |
| 103 | + |
| 104 | + def set_timber_number(self) -> None: |
| 105 | + """Triggers the assignment of the timber-specific member number. |
| 106 | +
|
| 107 | + Returns: |
| 108 | + None |
| 109 | + """ |
| 110 | + |
| 111 | + def set_assembly_number(self) -> None: |
| 112 | + """Triggers the assignment of the assembly/unit number. |
| 113 | +
|
| 114 | + Returns: |
| 115 | + None |
| 116 | + """ |
| 117 | + |
| 118 | + def set_ifc_building(self) -> None: |
| 119 | + """Triggers the assignment of the IFC building attribute. |
| 120 | +
|
| 121 | + Returns: |
| 122 | + None |
| 123 | + """ |
| 124 | + |
| 125 | + def set_ifc_storey(self) -> None: |
| 126 | + """Triggers the assignment of the IFC storey/level attribute. |
| 127 | +
|
| 128 | + Returns: |
| 129 | + None |
| 130 | + """ |
0 commit comments