Difference between revisions of "TabulationBulletDot class"

From Catglobe Wiki
Jump to: navigation, search
(Created page with "{{CGscriptClass_Template |Name=<nowiki>TabulationBulletDot</nowiki> |Description=<nowiki>Settings for Dotbullets on paragraph</nowiki> |Constructors= {{CGscriptConstructors_Te...")
 
Line 1: Line 1:
 
{{CGscriptClass_Template
 
{{CGscriptClass_Template
|Name=<nowiki>TabulationBulletDot</nowiki>
+
|Name=TabulationBulletDot
|Description=<nowiki>Settings for Dotbullets on paragraph</nowiki>
+
|Description=Settings for Dotbullets on paragraph
 
|Constructors=
 
|Constructors=
{{CGscriptConstructors_Template|Description=<nowiki>Create a new Bullet Setting for list with Dots</nowiki>}}
+
{{CGscriptConstructors_Template|Description=Create a new Bullet Setting for list with Dots}}
 
|Methods=
 
|Methods=
{{CGscriptMethods_Template|ReturnType=string|Name=<nowiki>ToString</nowiki>|Description=<nowiki>The string representation of the object.</nowiki>}}
+
{{CGscriptMethods_Template|ReturnType=string|Name=ToString|Description=The string representation of the object.}}
 
|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=BulletType|HasGetter=1|HasSetter=1|Description=Get/Set bulletType number 1-7. Find styles on http://www.aspose.com/docs/display/pdfnet/use+system+defined+bullets}}
{{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=array|Name=Color|HasGetter=1|HasSetter=1|Description=Get/Set Color of bullets and numbers}}
{{CGscriptProperties_Template|ReturnType=bool|Name=<nowiki>IsInList</nowiki>|HasGetter=1|HasSetter=1|Description=<nowiki>Get/Set if the paragraph is used in a list.</nowiki>}}
+
{{CGscriptProperties_Template|ReturnType=bool|Name=IsInList|HasGetter=1|HasSetter=1|Description=Get/Set if the paragraph is used in a list.}}
{{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=Level|HasGetter=1|HasSetter=1|Description=Get/Set Level of nesting of list element}}
{{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=ObjectTypeName|HasGetter=1|Description=The name of the type of object.}}
{{CGscriptProperties_Template|ReturnType=TypeInformation|Name=<nowiki>TypeInformation</nowiki>|HasGetter=1|Description=<nowiki>Get information about this class.</nowiki>}}
+
{{CGscriptProperties_Template|ReturnType=TypeInformation|Name=TypeInformation|HasGetter=1|Description=Get information about this class.}}
 
}}
 
}}
 +
 +
=== <span style="color:#DF8621">'''Examples'''</span> ===
 +
 +
<source lang="javascript">
 +
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;
 +
</source>

Revision as of 16:45, 21 June 2016

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;