* Show tooltip * 显示提示
(msg: string)
| 217 | * 显示提示 |
| 218 | */ |
| 219 | public showTooltips(msg: string): void { |
| 220 | if (!this._defaultTooltipWin) return; |
| 221 | |
| 222 | this._tooltipWin = this._defaultTooltipWin; |
| 223 | this._tooltipWin.text = msg; |
| 224 | this.showTooltipsWin(this._tooltipWin); |
| 225 | } |
| 226 | |
| 227 | /** |
| 228 | * Show custom tooltip window |
nothing calls this directly
no test coverage detected