Previous topic

diff

Next topic

DocAddPage

This Page

DocAddEmptyPagesΒΆ

DocAddEmptyPages adds one or more empty pages to a document.

bool = DocAddEmptyPages(hDoc, svPageNames)

Return Value

Is TRUE (1), if the function was successful and otherwise FALSE (0).

Parameters

hDoc

Identifies the document.

svPageNames

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.

id-1658486