CreateNumbering
Creates a bullet for a paragraph with the numbering character or symbol specified with the numType parameter.
Syntax
expression.CreateNumbering(numType, startAt);
expression - A variable that represents a Api class.
Parameters
| Name | Required/Optional | Data type | Default | Description |
|---|---|---|---|---|
| numType | Required | BulletType | The numbering type the paragraphs will be numbered with. | |
| startAt | Required | number | The number the first numbered paragraph will start with. |
Returns
Example
This example creates a bullet for paragraphs.
- Code
- Result
// How to create a numbered paragraph specifying its numerical.
// Add numbered paragraph to the page.
const doc = Api.GetDocument();
const page = doc.GetPage(0);
const fill = Api.CreateSolidFill(Api.RGB(255, 111, 61));
const stroke = Api.CreateStroke(0, Api.CreateNoFill());
const shape = Api.CreateShape("flowChartMagneticTape", 150 * 36000, 65 * 36000, fill, stroke);
shape.SetPosition(608400, 1267200);
const docContent = shape.GetDocContent();
let paragraph = docContent.GetElement(0);
const bullet = Api.CreateNumbering("ArabicParenR", 1);
paragraph.SetBullet(bullet);
paragraph.AddText(" This is an example of the numbered paragraph.");
paragraph = Api.CreateParagraph();
paragraph.SetBullet(bullet);
paragraph.AddText(" This is an example of the numbered paragraph.");
docContent.Push(paragraph);
page.AddObject(shape);