CreateBullet
function CreateBullet(sSymbol: string = null): ApiBullet
Description
Creates a bullet for a paragraph with the character or symbol specified with the sSymbol parameter.
Parameters
- sSymbol
string
null The character or symbol which will be used to create the bullet for the paragraph.
Returns
ApiBullet
Try It
var oWorksheet = Api.GetActiveSheet();
var oFill = Api.CreateSolidFill(Api.CreateRGBColor(255, 111, 61));
var oStroke = Api.CreateStroke(0, Api.CreateNoFill());
var oShape = oWorksheet.AddShape("flowChartOnlineStorage", 120 * 36000, 35 * 36000, oFill, oStroke, 0, 2 * 36000, 0, 3 * 36000);
var oDocContent = oShape.GetContent();
var oParagraph = oDocContent.GetElement(0);
var oBullet = Api.CreateBullet("-");
oParagraph.SetBullet(oBullet);
oParagraph.AddText(" This is an example of the bulleted paragraph.");