INDENT typically 0,2,4; default == 2; multiple of 2;
| 104 | // typically 0,2,4; default == 2; |
| 105 | // multiple of 2; |
| 106 | void setIndentSize(const uint8_t size = 2) { _indentStep = size; }; |
| 107 | uint8_t getIndentSize() { return _indentStep; }; |
| 108 | // for manual layout control |
| 109 | void incrIndent() { _indent += _indentStep; }; |