DocumentEnsureMinimum Method |
Namespace: Aspose.Words
// Create a blank document then remove all nodes from it, the result will be a completely empty document Document doc = new Document(); doc.RemoveAllChildren(); // Ensure that the document is valid. Since the document has no nodes this method will create an empty section // and add an empty paragraph to make it valid. doc.EnsureMinimum();