| | |
| | | |
| | | #endregion |
| | | |
| | | #region 颜色覆盖 |
| | | |
| | | /// <summary> |
| | | /// 设置颜色 |
| | | /// </summary> |
| | | public void SetColor(string Id, string htmlColor) |
| | | { |
| | | _manager?.SetColor(Id, htmlColor); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 设置颜色 |
| | | /// </summary> |
| | | public void SetColor(List<string> Ids, string htmlColor) |
| | | { |
| | | _manager?.SetColor(Ids, htmlColor); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 设置颜色 |
| | | /// </summary> |
| | | public void SetColor(List<ColorL3d> list) |
| | | { |
| | | _manager?.SetColor(list); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 设置颜色 |
| | | /// </summary> |
| | | public void ClearColor(string Id) |
| | | { |
| | | _manager?.ClearColor(Id); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 设置颜色 |
| | | /// </summary> |
| | | public void ClearColor(List<string> Ids) |
| | | { |
| | | _manager?.ClearColor(Ids); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 清除颜色 |
| | | /// </summary> |
| | | public void ClearColor() |
| | | { |
| | | _manager?.ClearColor(); |
| | | } |
| | | |
| | | #endregion |
| | | |
| | | } |
| | | } |