| 1524 | } |
| 1525 | |
| 1526 | Color3B RichText::getAnchorTextOutlineColor3B() |
| 1527 | { |
| 1528 | if (auto&& itr = _defaults.find(KEY_ANCHOR_TEXT_OUTLINE_COLOR); itr != _defaults.end()) |
| 1529 | { |
| 1530 | return color3BWithString(itr->second.asString()); |
| 1531 | } |
| 1532 | return {}; |
| 1533 | } |
| 1534 | |
| 1535 | int RichText::getAnchorTextOutlineSize() |
| 1536 | { |
no test coverage detected