SetPosition
Specify the amount by which text is raised or lowered for this run in relation to the default
baseline of the surrounding non-positioned text.
Parameters:
Name |
Type |
Description |
nPosition |
hps
|
Specifies a positive (raised text) or negative (lowered text)
measurement in half-points (1/144 of an inch). |
Example
Copy code
builder.CreateFile("docx");
oDocument = Api.GetDocument();
oTextPr = oDocument.GetDefaultTextPr();
oTextPr.SetPosition(10);
oParagraph = oDocument.GetElement(0);
oParagraph.AddText("A sample text raised 5 points (10 half-points) above the baseline using the text properties.");
builder.SaveFile("docx", "SetPosition.docx");
builder.CloseFile();
Resulting document