`a:solidFill` custom element class.
| 182 | |
| 183 | |
| 184 | class CT_SolidColorFillProperties(BaseOxmlElement): |
| 185 | """`a:solidFill` custom element class.""" |
| 186 | |
| 187 | eg_colorChoice = ZeroOrOneChoice( |
| 188 | ( |
| 189 | Choice("a:scrgbClr"), |
| 190 | Choice("a:srgbClr"), |
| 191 | Choice("a:hslClr"), |
| 192 | Choice("a:sysClr"), |
| 193 | Choice("a:schemeClr"), |
| 194 | Choice("a:prstClr"), |
| 195 | ), |
| 196 | successors=(), |
| 197 | ) |
nothing calls this directly
no test coverage detected
searching dependent graphs…