How to change line spacing in DocX (docx.codeplex.com)

Viewed 1483

I have a Paragraph object from the C# library DocX and am trying in vain to set the LineSpacing property but it has no effect?

internal static Paragraph StandardFormat(this Paragraph p)
{
    p = p.FontSize(12);

    p.LineSpacing = 1.5f;

    return p;
}
1 Answers
Related