-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathdisplay_attribute.pyi
More file actions
136 lines (97 loc) · 3.42 KB
/
display_attribute.pyi
File metadata and controls
136 lines (97 loc) · 3.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
class display_attribute:
"""
A wrapper class for managing element display states for WebGL hierarchy display settings (not in Cadwork 3d).
These methods update the internal state of the attribute object without requiring external parameters.
Used exclusively with `set_webgl_hierarchy` to define visibility and display
properties for elements in the WebGL.
.. deprecated::
This class supports legacy local WebGL workflows.
It will be deprecated.
"""
def __init__(self) -> None:
"""Initializes a new display_attribute instance."""
def set_none(self) -> None:
"""Resets or clears the current display attribute state.
Returns:
None
"""
def set_name(self) -> None:
"""Triggers the assignment of the name attribute.
Returns:
None
"""
def set_group(self) -> None:
"""Triggers the assignment of the group attribute.
Returns:
None
"""
def set_subgroup(self) -> None:
"""Triggers the assignment of the subgroup attribute.
Returns:
None
"""
def set_comment(self) -> None:
"""Triggers the assignment of the comment attribute.
Returns:
None
"""
def set_edv_code(self) -> None:
"""Triggers the assignment of the EDV/ERP code.
Returns:
None
"""
def set_material(self) -> None:
"""Triggers the assignment of the material attribute.
Returns:
None
"""
def set_material_group(self) -> None:
"""Triggers the assignment of the material group attribute.
Returns:
None
"""
def set_user1(self) -> None:
"""Triggers the assignment of custom user field 1."""
def set_user2(self) -> None:
"""Triggers the assignment of custom user field 2."""
def set_user3(self) -> None:
"""Triggers the assignment of custom user field 3."""
def set_user4(self) -> None:
"""Triggers the assignment of custom user field 4."""
def set_user5(self) -> None:
"""Triggers the assignment of custom user field 5."""
def set_user6(self) -> None:
"""Triggers the assignment of custom user field 6."""
def set_user7(self) -> None:
"""Triggers the assignment of custom user field 7."""
def set_user8(self) -> None:
"""Triggers the assignment of custom user field 8."""
def set_user9(self) -> None:
"""Triggers the assignment of custom user field 9."""
def set_user10(self) -> None:
"""Triggers the assignment of custom user field 10."""
def set_production_number(self) -> None:
"""Triggers the assignment of the production/fabrication number.
Returns:
None
"""
def set_timber_number(self) -> None:
"""Triggers the assignment of the timber-specific member number.
Returns:
None
"""
def set_assembly_number(self) -> None:
"""Triggers the assignment of the assembly/unit number.
Returns:
None
"""
def set_ifc_building(self) -> None:
"""Triggers the assignment of the IFC building attribute.
Returns:
None
"""
def set_ifc_storey(self) -> None:
"""Triggers the assignment of the IFC storey/level attribute.
Returns:
None
"""