TabulationBulletDot class

From Catglobe Wiki
Jump to: navigation, search

TabulationBulletDot



Settings for Dotbullets on paragraph

Constructors

  • () - Create a new Bullet Setting for list with Dots

Methods

  • string ToString() - The string representation of the object.

Properties


Examples

TabulationBulletDot bulletdot = new TabulationBulletDot();
//For all bullet types
bulletdot.Level = 1;//Defines what level of the list we want the paragraph. 
bulletdot.Color = Color_getByName("green");
bulletdot.IsInList = true;//Defines if the bullet point is in a list. 
//For dot bullettype
bulletdot.BulletType = 2;