1
2
3
4
5
6
7
8
9
10
11
12
13
14
use super::font::text_font_type::XlsxTextFontType;

/// https://learn.microsoft.com/en-us/dotnet/api/documentformat.openxml.drawing.symbolfont?view=openxml-3.0.1
///
/// This element specifies that a symbol font be used for a specific run of text.
///
/// Example
/// ```
/// <a:rPr …>
///     <a:sym typeface="Sample Font"/>
/// </a:rPr>
/// ```
// tag: sym
pub type XlsxSymbolFont = XlsxTextFontType;