When using decimal tabs, documents I am saving to PDF or sending directly to a printer have their values aligned with the digit grouping character (,) rather than the decimal separator (.). The word document formats with no problem. Any help would be greatly appreciated.
Sample code used to convert doc to pdf:
If IO.File.Exists(txtDocToConvert.Text) Then
Dim asposeDoc As New Aspose.Words.Document(txtDocToConvert.Text)
Dim options As New Aspose.Words.Rendering.PdfOptions()
options.Compliance = Aspose.Words.Rendering.PdfCompliance.Pdf15
asposeDoc.SaveToPdf(0, asposeDoc.PageCount, txtDocToConvert.Text.Replace(“doc”, “pdf”), options)
'aDoc.Save(TextBox1.Text.Replace(“doc”, “pdf”))
'aDoc.Save(TextBox1.Text.Replace(“doc”, “pdf”), Aspose.Words.SaveFormat.Pdf)
End If