(spacing: number)
| 45 | widget.layout()?.setHorizontalSpacing(spacing); |
| 46 | }, |
| 47 | set verticalSpacing(spacing: number) { |
| 48 | widget.layout()?.setVerticalSpacing(spacing); |
| 49 | }, |
| 50 | set columnProps(props: GridViewColumnProps) { |
| 51 | for (const indexString of Object.keys(props)) { |
| 52 | const index = parseInt(indexString, 10); |