Not able to add Aspose bullet points

Im not able to add bullet points within table cell in aspose pdf

Can anyone help?

@gem123

Would you kindly share the sample code snippet that you have tried so far? We will test it in our environment and will try to modify it so that your requirements can be met.

I haven’t seen any documentation related to this
Not able to start coding.I was going through all references mentioned in google

@gem123

In order to add bullet using TextFragment in Table Cell, you can please use the below code snippet:

System.Text.Encoding Encoder = System.Text.ASCIIEncoding.Default;
Byte[] buffer = new byte[] { (byte)149 };
string bullet = Encoding.GetEncoding(1252).GetString(buffer);
TextFragment bulletFragment = new TextFragment(bullet + " Some Point");

Please feel free to let us know in case you face any issues.

Thanks
Working as expected

1 Like