`a:gs` custom element class.
| 88 | |
| 89 | |
| 90 | class CT_GradientStop(BaseOxmlElement): |
| 91 | """`a:gs` custom element class.""" |
| 92 | |
| 93 | eg_colorChoice = ZeroOrOneChoice( |
| 94 | ( |
| 95 | Choice("a:scrgbClr"), |
| 96 | Choice("a:srgbClr"), |
| 97 | Choice("a:hslClr"), |
| 98 | Choice("a:sysClr"), |
| 99 | Choice("a:schemeClr"), |
| 100 | Choice("a:prstClr"), |
| 101 | ), |
| 102 | successors=(), |
| 103 | ) |
| 104 | pos = RequiredAttribute("pos", ST_PositiveFixedPercentage) |
| 105 | |
| 106 | |
| 107 | class CT_GradientStopList(BaseOxmlElement): |
nothing calls this directly
no test coverage detected
searching dependent graphs…