DocAddEmptyPages adds one or more empty pages to a document.
Return Value
Is TRUE (1), if the function was successful and otherwise FALSE (0).
Parameters
Identifies the document.
svPageNames is a vector with page names. The length of the vector specifies the number of pages. If the new names are not unique for the document, they will replaced with default names.
Example
// File created from "script\uniplot\obj_doc.ic".
def test_DocAddEmptyPages()
{
hDoc = DocCreate();
DocAddEmptyPages(hDoc, ["sin", "cos"]);
}
test_DocAddEmptyPages()
History
| Version | Description |
|---|---|
| 5.20 | New. |
See also
id-1658486