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;
}