SetFooterDistance(nDistance)
Определяет расстояние от нижнего края страницы до нижнего края нижнего колонтитула.
Параметры:
Название | Тип | Описание |
nDistance | twips | Расстояние от нижнего края страницы до нижнего края нижнего колонтитула, измеряемое в двадцатых долях пункта (1/1440 дюйма). |
Возвращает:
- Этот метод не возвращает никаких данных.
Пример
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
oParagraph.AddText("This is a page with a footer. ");
oParagraph.AddText("Scroll down the page to see it.");
var oSection = oDocument.GetFinalSection();
var oFooter = oSection.GetFooter("default", true);
oSection.SetFooterDistance(1440);
oParagraph = oFooter.GetElement(0);
oParagraph.AddText("This is a page footer. ");
oParagraph.AddText("The distance from the page bottom to the footer is 1 inch (1440 twentieths of a point).");
builder.SaveFile("docx", "SetFooterDistance.docx");
builder.CloseFile();