Таблица DocumentAPI.LineEndingProperties
Таблица DocumentAPI.LineEndingProperties содержит варианты оформления окончаний линий. Используется в полях headLineEndingProperties```и```tailLineEndingProperties таблицы DocumentAPI.LineProperties.
| Поле | Тип | Описание |
|---|---|---|
LineEndingProperties.style | LineEndingStyle | Стиль окончания линии |
LineEndingProperties.relativeExtent | SizeU | Размер окончания линии относительно ее ширины |
Пример
local tbl = document:getBlocks():getTable(0)
local cell = tbl:getCell("C3")
lineProperties = DocumentAPI.LineProperties()
lineProperties.headLineEndingProperties = DocumentAPI.LineEndingProperties()
lineProperties.headLineEndingProperties.style = DocumentAPI.LineEndingStyle_Arrow
lineProperties.headLineEndingProperties.relativeExtent = DocumentAPI.SizeU()
lineProperties.headLineEndingProperties.relativeExtent.width = 2
lineProperties.headLineEndingProperties.relativeExtent.height = 2
lineProperties.tailLineEndingProperties = DocumentAPI.LineEndingProperties()
lineProperties.tailLineEndingProperties.style = DocumentAPI.LineEndingStyle_Arrow
lineProperties.tailLineEndingProperties.relativeExtent = DocumentAPI.SizeU()
lineProperties.tailLineEndingProperties.relativeExtent.width = 2
lineProperties.tailLineEndingProperties.relativeExtent.height = 2
borders = DocumentAPI.Borders()
borders = borders:setTop(lineProperties)
cell:setBorders(borders)