UnderlineColorCustom is an Attribute like UnderlineColor, except it allows specifying a custom color.
| 193 | // UnderlineColorCustom is an Attribute like UnderlineColor, except |
| 194 | // it allows specifying a custom color. |
| 195 | type UnderlineColorCustom struct { |
| 196 | R float64 |
| 197 | G float64 |
| 198 | B float64 |
| 199 | A float64 |
| 200 | } |
| 201 | |
| 202 | func (u UnderlineColorCustom) toLibui() *C.uiAttribute { |
| 203 | return C.uiNewUnderlineColorAttribute(C.uiUnderlineColorCustom, C.double(u.R), C.double(u.G), C.double(u.B), C.double(u.A)) |
nothing calls this directly
no outgoing calls
no test coverage detected