Bullets point with text Alignment

Hi

I have successfully to add bullet point into a powerpoint file with vb.net or asp.net

however, all the bullet point have a same alignment in next line.

example:

1. xxxxxxxxxxxxxx
xxxxxxxxxxxxxxxx

2.yyyyyyyyyyyyyy
yyyyyyyyyyyyyyyy

I would like to know how to make the bullet point look like this:

1.xxxxxxxxxxxxxxx
xxxxxxxxxxxxxxx

2.yyyyyyyyyyyyyyyy
yyyyyyyyyyyyyyyy

any sample code? thanks

hlche3

Please check Paragraph members. You can use 2 properties BulletOffset and TextOffset.

In the last example add lines:
paras( i ).BulletOffset = 200
paras( i ).TextOffset = 400
or other values you prefer.

thanks! good support!