Hi,
I am having trouble creating a PDF document from Aspose.Word, i have selected red bullet points but the exported PDF has black bullet points please could you look into this for me.
string test = "1\n2\n3\n";
Document srcDoc = new Document();
DocumentBuilder builder = new DocumentBuilder(srcDoc);
builder.ListFormat.ApplyBulletDefault();
builder.ListFormat.ListLevel.Font.Color = Color.Red;
builder.Write(test);
builder.ListFormat.RemoveNumbers();
// srcDoc.Save("test.doc"); <= The word document has the correct formatting!.
Aspose.Pdf.Pdf pdf = new Aspose.Pdf.Pdf();
MemoryStream xmlDoc = new MemoryStream();
srcDoc.Save(xmlDoc, Aspose.Words.SaveFormat.AsposePdf);
xmlDoc.Position = 0;
pdf.BindXML(xmlDoc, null);
pdf.Save("test.pdf"); // The exported PDF has black bullet points
Thanks