appendContent
The appendContent
method appends content
to the existing content (the DRECONTENT
field) of a document or document section.
Syntax
appendContent ( content [, number])
Arguments
Argument | Description |
---|---|
content
|
(string) The content to append. |
number
|
(number) The document section to modify. If you do not specify this argument, content is appended to the last section. If you specify a number greater than the number of existing sections, additional empty sections are created. |
Examples
-- Append content to the last section document:appendContent("content") -- Append content to section 7, empty sections are created before this section if necessary
document:appendContent("content", 7)