how to remove space in between paragraphs using aspose.words?please see my below code i want here how to remove space in between paragraphs?
// Iterate through all paragraphs in the source document to avoid the staying paragraphs together.
foreach (Paragraph para in oCurrentDoc.GetChildNodes(NodeType.Paragraph, true))
{
para.ParagraphFormat.KeepWithNext = false;
}