1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::raw::drawing::fill::XlsxFillStyleEnum;

/// https://learn.microsoft.com/en-us/dotnet/api/documentformat.openxml.drawing.underlinefill?view=openxml-3.0.1
///
/// This element specifies the fill color of an underline for a run of text.
///
/// Example:
/// ```
/// <a:rPr …>
///     <a:uFill>
///         <a:solidFill>
///             <a:srgbClr val="FFFF00"/>
///         </a:solidFill>
///     </a:uFill>
/// </a:rPr>
/// ```
pub type XlsxUnderlineFill = XlsxFillStyleEnum;