use super::spacing::XlsxSpacingEnum;

/// https://learn.microsoft.com/en-us/dotnet/api/documentformat.openxml.drawing.spacebefore?view=openxml-3.0.1
///
/// This element specifies the amount of vertical white space that is present before a paragraph.
/// This can be specified in two different ways, percentage spacing and font point spacing.
///
/// Example:
/// ```
/// <a:pPr …>
///     <a:spcBef>
///         <a:spcPts val="1800"/>
///     </a:spcBef>
///     <a:spcAft>
///         <a:spcPts val="600"/>
///     </a:spcAft>
/// </a:pPr>
/// ```
// tag: spcBef
pub type XlsxSpaceBefore = XlsxSpacingEnum;