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
property pyramidInputPresenterModel help:'If clipChildren is true, the children will not display outside the geometry of the parent element. If clipChildren is false, the children will display outside the geometry of the parent element.'.
'If clipChildren is true, the children will not display outside the geometry of the parent element. If clipChildren is false, the children will display outside the geometry of the parent element.'.
property pyramidInputPresenterStrings help:'Change the margin. The margin will affect the space between the border and the elements outside. For example:
230
+
- "10" to set a margin of 10 px on each size.
231
+
- "10 20" to set a margin of 10 px on the top and bottom and 20 px on the right and left.
232
+
- "10 20 30 40" to set a margin of 10 px on top, 20 px on left, 30 px on bottom and 40 px on right.'..
224
233
^ property
225
234
]
226
235
@@ -233,6 +242,11 @@ PyramidBlocPlugin class >> padding [
property pyramidInputPresenterModel help:'Change the elevation (#zIndex:). Bloc will used the elevation to determine wich of two sibling must be draw on top. The higher zIndex will be drawn on top of the lesser one.'.
288
+
property pyramidInputPresenterStrings help:
289
+
'Change the elevation (#zIndex:). Bloc will used the elevation to determine wich of two sibling must be draw on top. The higher zIndex will be drawn on top of the lesser one.'.
'Remove the layout. The children will be place according to their position.';
49
51
action: [
50
52
selfvalue:BlBasicLayoutnew.
51
53
self whenValueChangedDo value:self value ];
52
54
enabled:false;
53
55
yourself.
54
56
buttonFlow :=SpButtonPresenternew
55
57
label:'Flow';
58
+
help:
59
+
'Set the layout as Flow. The children will be place according to their order. The flow layout will display all children in line and will wrap arround if it does not have enought place.';
56
60
action: [
57
61
selfvalue:BlFlowLayout horizontal.
58
62
self whenValueChangedDo value:self value ];
59
63
enabled:false;
60
64
yourself.
61
65
buttonProportionnal :=SpButtonPresenternew
62
66
label:'ST layout';
67
+
help:
68
+
'Set the layout as Proportional. The children will be place according to their relative top/bottom and left/right proportion.';
0 commit comments