* Setup overflow behavior * 设置溢出行为
(overflow: EOverflowType)
| 686 | * 设置溢出行为 |
| 687 | */ |
| 688 | protected setupOverflow(overflow: EOverflowType): void { |
| 689 | this._overflow = overflow; |
| 690 | if (overflow === EOverflowType.Hidden) { |
| 691 | this._clipRect = new Rectangle(0, 0, this._width, this._height); |
| 692 | } |
| 693 | } |
| 694 | |
| 695 | // Construction from resource | 从资源构建 |
| 696 |
no outgoing calls
no test coverage detected