* Get/set title color * 获取/设置标题颜色
()
| 131 | * 获取/设置标题颜色 |
| 132 | */ |
| 133 | public get titleColor(): string { |
| 134 | const tf = this.getTextField(); |
| 135 | if (tf) { |
| 136 | return tf.color; |
| 137 | } |
| 138 | return '#000000'; |
| 139 | } |
| 140 | |
| 141 | public set titleColor(value: string) { |
| 142 | const tf = this.getTextField(); |
nothing calls this directly
no test coverage detected