Difference between revisions of "TabulationBulletDot class"

From Catglobe Wiki
Jump to: navigation, search
Line 8: Line 8:
 
|Properties=
 
|Properties=
 
{{CGscriptProperties_Template|ReturnType=int|Name=<nowiki>BulletType</nowiki>|HasGetter=1|HasSetter=1|Description=<nowiki>Get/Set bulletType number 1-7. Find styles on http://www.aspose.com/docs/display/pdfnet/use+system+defined+bullets</nowiki>}}
 
{{CGscriptProperties_Template|ReturnType=int|Name=<nowiki>BulletType</nowiki>|HasGetter=1|HasSetter=1|Description=<nowiki>Get/Set bulletType number 1-7. Find styles on http://www.aspose.com/docs/display/pdfnet/use+system+defined+bullets</nowiki>}}
{{CGscriptProperties_Template|ReturnType=array|Name=<nowiki>Color</nowiki>|HasGetter=1|HasSetter=1|Description=<nowiki>Get/Set Color of bullets and numbers</nowiki>}}
+
{{CGscriptProperties_Template|ReturnType=Color|Name=<nowiki>Color</nowiki>|HasGetter=1|HasSetter=1|Description=<nowiki>Get/Set Color of bullets and numbers</nowiki>}}
 
{{CGscriptProperties_Template|ReturnType=int|Name=<nowiki>Level</nowiki>|HasGetter=1|HasSetter=1|Description=<nowiki>Get/Set Level of nesting of list element</nowiki>}}
 
{{CGscriptProperties_Template|ReturnType=int|Name=<nowiki>Level</nowiki>|HasGetter=1|HasSetter=1|Description=<nowiki>Get/Set Level of nesting of list element</nowiki>}}
 
{{CGscriptProperties_Template|ReturnType=string|Name=<nowiki>ObjectTypeName</nowiki>|HasGetter=1|Description=<nowiki>The name of the type of object.</nowiki>}}
 
{{CGscriptProperties_Template|ReturnType=string|Name=<nowiki>ObjectTypeName</nowiki>|HasGetter=1|Description=<nowiki>The name of the type of object.</nowiki>}}

Revision as of 11:08, 10 July 2018

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

  • int BulletType { get; set; } - Get/Set bulletType number 1-7. Find styles on http://www.aspose.com/docs/display/pdfnet/use+system+defined+bullets
  • Color Color { get; set; } - Get/Set Color of bullets and numbers
  • int Level { get; set; } - Get/Set Level of nesting of list element
  • string ObjectTypeName { get; } - The name of the type of object.
  • TypeInformation TypeInformation { get; } - Get information about this class.


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;