You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The copyright to the computer software herein is the property of IntegrIT S.A.
5
-
* The software may be used and/or copied only with the written permission of
6
-
* IntegrIT S.A. or in accordance with the terms and conditions stipulated in
7
-
* the agreement/contract under which the software has been supplied.
5
+
* The software may be used and/or copied only with the written permission of
6
+
* IntegrIT S.A. or in accordance with the terms and conditions stipulated in
7
+
* the agreement/contract under which the software has been supplied.
8
8
9
9
10
10
In order to define custom properties for any object's properties pane, you may copy/paste from the following,
@@ -61,8 +61,8 @@ making sure that you maintain a proper JSON format.
61
61
]
62
62
},
63
63
// “groupInput” can have the following states - 0 items, 1 item, and many items.
64
-
// “blockInput” has only 2 states - 0 items or 1 item.
65
-
// This gives us an easy way to represent it as an object and not as an array internally which is beneficial for processing
64
+
// “blockInput” has only 2 states - 0 items or 1 item.
65
+
// This gives us an easy way to represent it as an object and not as an array internally which is beneficial for processing
66
66
// and forward-engineering in particular.
67
67
{
68
68
"propertyName": "Block",
@@ -90,7 +90,7 @@ making sure that you maintain a proper JSON format.
90
90
"propertyKeyword": "keyList",
91
91
"propertyType": "fieldList",
92
92
"template": "orderedList"
93
-
},
93
+
},
94
94
{
95
95
"propertyName": "List with attribute",
96
96
"propertyKeyword": "keyListOrder",
@@ -182,31 +182,31 @@ making sure that you maintain a proper JSON format.
182
182
"propertyType": "numeric",
183
183
"valueType": "number",
184
184
"propertyTooltip": "Allows the sequence to begin anywhere. The default starting value is minvalue for ascending sequences and maxvalue for descending ones.",
185
-
"maxValue": 999999999999999
185
+
"maxValue": 9223372036854775807
186
186
},
187
187
{
188
188
"propertyName": "Increment",
189
189
"propertyKeyword": "increment",
190
190
"propertyType": "numeric",
191
191
"valueType": "number",
192
192
"propertyTooltip": "The data type determines the default minimum and maximum values of the sequence.",
193
-
"maxValue": 999999999999999
193
+
"maxValue": 9223372036854775807
194
194
},
195
195
{
196
196
"propertyName": "Min value",
197
197
"propertyKeyword": "minValue",
198
198
"propertyType": "numeric",
199
199
"valueType": "number",
200
200
"propertyTooltip": "Determines the minimum value a sequence can generate. If this clause is not supplied is specified, then defaults will be used. The default for an ascending sequence is 1. The default for a descending sequence is the minimum value of the data type.",
201
-
"maxValue": 999999999999999
201
+
"maxValue": 9223372036854775807
202
202
},
203
203
{
204
204
"propertyName": "Max value",
205
205
"propertyKeyword": "maxValue",
206
206
"propertyType": "numeric",
207
207
"valueType": "number",
208
208
"propertyTooltip": "Determines the maximum value for the sequence. If this clause is not supplied is specified, then default values will be used. The default for an ascending sequence is the maximum value of the data type. The default for a descending sequence is -1.",
209
-
"maxValue": 999999999999999
209
+
"maxValue": 9223372036854775807
210
210
},
211
211
{
212
212
"propertyName": "Cache",
@@ -215,7 +215,7 @@ making sure that you maintain a proper JSON format.
215
215
"valueType": "number",
216
216
"propertyTooltip": "specifies how many sequence numbers are to be preallocated and stored in memory for faster access. The minimum value is 1 (only one value can be generated at a time, i.e., no cache), and this is also the default",
0 commit comments