SetVertAlign(sType) → { ApiTextPr }
Определяет выравнивание, которое будет применяться к содержимому прогона по отношению к стандартному виду текста прогона:
- «baseline» — символы в текущем наборе текста будут выровнены по базовой линии текста по умолчанию.
- «subscript» -символы в текущем тексте будут выровнены ниже базовой линии текста по умолчанию.
- «superscript» -символы в текущем наборе текста будут выровнены над базовой линией текста по умолчанию.
Параметры:
Название | Тип | Описание |
sType | «baseline» | «subscript» | «superscript» | Тип вертикального выравнивания, примененный к текстовому содержимому. |
Возвращает:
- Тип ApiTextPr
Пример
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
var oRun = Api.CreateRun();
oRun.AddText("This is just a sample text. ");
oParagraph.AddElement(oRun);
var oMyNewRunStyle1 = oDocument.CreateStyle("My New Run Style 1", "run");
var oTextPr1 = oMyNewRunStyle1.GetTextPr();
oTextPr1.SetVertAlign("subscript");
oRun = Api.CreateRun();
oRun.SetStyle(oMyNewRunStyle1);
oRun.AddText("This is a text run with the text aligned below the baseline vertically. ");
oParagraph.AddElement(oRun);
var oMyNewRunStyle2 = oDocument.CreateStyle("My New Run Style 2", "run");
var oTextPr2 = oMyNewRunStyle2.GetTextPr();
oTextPr2.SetVertAlign("baseline");
oRun = Api.CreateRun();
oRun.SetStyle(oMyNewRunStyle2);
oRun.AddText("This is a text run with the text aligned by the baseline vertically. ");
oParagraph.AddElement(oRun);
var oMyNewRunStyle3 = oDocument.CreateStyle("My New Run Style 3", "run");
var oTextPr3 = oMyNewRunStyle3.GetTextPr();
oTextPr3.SetVertAlign("superscript");
oRun = Api.CreateRun();
oRun.SetStyle(oMyNewRunStyle3);
oRun.AddText("This is a text run with the text aligned above the baseline vertically.");
oParagraph.AddElement(oRun);
builder.SaveFile("docx", "SetVertAlign.docx");
builder.CloseFile();