SetBetweenBorder(sType, nSize, nSpace, r, g, b)
Унаследованный от: ApiParaPr#SetBetweenBorder
Указывает границу, которая будет отображаться между каждым абзацем в наборе абзацев с одинаковым набором настроек границы абзаца.
Параметры:
Название | Тип | Описание |
sType | BorderType | Стиль границы. |
nSize | pt_8 | Ширина текущей границы, измеряемая в восьмых долях пункта. |
nSpace | pt | Смещение интервала между абзацами, измеряемое в пунктах, используемое для размещения этой границы. |
r | byte | Значение компонента красного цвета. |
g | byte | Значение компонента зеленого цвета. |
b | byte | Значение компонента синего цвета. |
Возвращает:
- Этот метод не возвращает никаких данных.
Пример
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
oParagraph.AddText("This is the first paragraph. We will add a thick orange border between it and the next paragraph. ");
oParagraph.AddText("No additional spacing between the border and the paragraphs is added.");
oParagraph.SetBetweenBorder("single", 24, 0, 255, 111, 61);
oParagraph = Api.CreateParagraph();
oParagraph.AddText("This is the second paragraph. We will add a thin black border between it and the next paragraph. ");
oParagraph.AddText("We added additional spacing between the border and the paragraphs.");
oParagraph.SetBetweenBorder("single", 12, 10, 51, 51, 51);
oDocument.Push(oParagraph);
oParagraph = Api.CreateParagraph();
oParagraph.AddText("This is the third paragraph. The border can be displayed above it only, as there are no new paragraphs after it.");
oDocument.Push(oParagraph);
builder.SaveFile("docx", "SetBetweenBorder.docx");
builder.CloseFile();