1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::raw::drawing::line::outline::XlsxOutline;

/// https://learn.microsoft.com/en-us/dotnet/api/documentformat.openxml.drawing.underline?view=openxml-3.0.1
///
/// Secifies the properties for the stroke of the underline that is present within a run of text.
///
/// Example
/// ```
/// <a:rPr …>
///     <a:uLn algn="r">
/// </a:rPr>
/// ```
pub type XlsxUnderline = XlsxOutline;