Vorheriges Thema

diff

Nächstes Thema

DocAddPage

Diese Seite

DocAddEmptyPages

DocAddEmptyPages fügt einem Dokument leere Seiten hinzu.

bool = DocAddEmptyPages(hDoc, svPageNames)

Returnwert

Ist TRUE (1), wenn die Funktion erfolgreich war und sonst FALSE (0).

Parameter

hDoc

hDoc ist die Zugriffsnummer des mit DocCreate erzeugten Dokuments.

svPageNames

svPageNames ist ein Vektor mit Seitennamen.

Beispiel

// File created from "script\uniplot\obj_doc.ic".

def test_DocAddEmptyPages()
{
    hDoc = DocCreate();
    DocAddEmptyPages(hDoc, ["sin", "cos"]);
}
test_DocAddEmptyPages()

History

Version Beschreibung
5.20 Neu.

id-1658486