Some sample but incomplete code:
DocumentBuilder builder = new DocumentBuilder(_document);
builder.MoveToDocumentStart();
builder.PageSetup.LeftMargin = ConvertUtil.InchToPoint(1.0 d);
builder.PageSetup.TopMargin = ConvertUtil.InchToPoint(1.8 d);
builder.PageSetup.BottomMargin = ConvertUtil.InchToPoint(0.9 d);
builder.PageSetup.RightMargin = ConvertUtil.InchToPoint(1.0 d);
builder.ParagraphFormat.TabStops.Clear();
builder.MoveToHeaderFooter(HeaderFooterType.HeaderPrimary);
builder.ParagraphFormat.TabStops.Clear();
I cannot get rid of ANY of the tabstops when calling the clear… I see the default tab stops still in the file. I notice that someone else had this issue with the Styles objects. I suspect it’s related. How soon can something such as this be fixed? I tried Aspose.Words versions 6.2.0.0 and 8.0.0.0 for C# .NET. No luck.