user2583719
user2583719

Reputation: 1

how to define new bullet in ms-word via interop in C#

I want to set one of the winidings 3 bullet in msword. in word we can set with define new bullet->symbol->windings 3 but interop how set this type of bullet. can explain with code sample if u know.

i did default bullet with this code

oWord.Selection.Range.ListFormat.ApplyBulletDefault(ref objMissing);

Thanks, GOBINATH

Upvotes: 0

Views: 799

Answers (1)

Junaith
Junaith

Reputation: 3388

Use the ListFormat.ApplyListTemplate method to change the bullet type.

See this MSDN forum post for example.

Upvotes: 1

Related Questions