PageCreateΒΆ

PageCreate creates a new document page.

hPage = PageCreate()

Return Value

If the function succeeds, the return value is the handle of the newly created document. If the function fails, the return value is 0.

Example

* hDoc = DocCreate()
* hPage = PageCreate()
* DocAddPage(hDoc, hPage)
* PageReplot(hPage)

id-1632171