addSection
The addSection
method adds an empty section to the end of the document.
Syntax
addSection()
Returns
(LuaDocument). Returns a LuaDocument object representing the document, with the new section as the active section.
Example
local newSection = document:addSection() -- Add a new section to the document newSection:setContent("content") -- Set content for the new section