For the generic Container, this function allows to setup the children arrangement. Args: layout_orientation (Container.LAYOUT_HORIZONTAL or Container.LAYOUT_VERTICAL):
(self, layout_orientation)
| 1300 | return key |
| 1301 | |
| 1302 | def set_layout_orientation(self, layout_orientation): |
| 1303 | """For the generic Container, this function allows to setup the children arrangement. |
| 1304 | |
| 1305 | Args: |
| 1306 | layout_orientation (Container.LAYOUT_HORIZONTAL or Container.LAYOUT_VERTICAL): |
| 1307 | """ |
| 1308 | self.layout_orientation = layout_orientation |
| 1309 | |
| 1310 | |
| 1311 | class HTML(Tag): |