SetTabs
Specify a sequence of custom tab stops which will be used for any tab characters in the current paragraph.
Warning: the lengths of aPos array and aVal array MUST BE equal to each other.
Parameters:
Name |
Type |
Description |
aPos |
Array.<twips>
|
An array of the positions of custom tab stops with respect to the
current page margins measured in twentieths of a point (1/1440 of an inch). |
aVal |
Array.<TabJc>
|
An array of the styles of custom tab stops, which determines the behavior of the tab stop and
the alignment which will be applied to text entered at the current custom tab stop. |
Example
Copy code
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph, oParaPr;
var oMyStyle = oDocument.CreateStyle("My document style");
oParaPr = oMyStyle.GetParaPr();
oParaPr.SetTabs([1440, 4320, 7200], ["left", "center", "right"]);
oParagraph = oDocument.GetElement(0);
oParagraph.SetStyle(oMyStyle);
oParagraph.AddTabStop();
oParagraph.AddText("Custom tab - 1 inch left");
oParagraph.AddLineBreak();
oParagraph.AddTabStop();
oParagraph.AddTabStop();
oParagraph.AddText("Custom tab - 3 inches center");
oParagraph.AddLineBreak();
oParagraph.AddTabStop();
oParagraph.AddTabStop();
oParagraph.AddTabStop();
oParagraph.AddText("Custom tab - 5 inches right");
builder.SaveFile("docx", "SetTabs.docx");
builder.CloseFile();
Resulting document