SetLabel
function SetLabel(sLabel: string = null): void
Description
Sets the label attribute to the current container.
Parameters
- sLabel
string
null The label which will be added to the current container. Can be a positive or negative integer from -2147483647 to 2147483647.
Returns
void
Try It
var oDocument = Api.GetDocument();
var oBlockLvlSdt = Api.CreateBlockLvlSdt();
oBlockLvlSdt.GetContent().GetElement(0).AddText("This is a block text content control with a label set to it.");
oBlockLvlSdt.SetLabel("2147483647");
oDocument.AddElement(0, oBlockLvlSdt);
var oLabel = oBlockLvlSdt.GetLabel();
var oParagraph = oDocument.GetElement(1);
oParagraph.AddText("Label: " + oLabel);