8.1.9.3 Folder::PageBases
It is recommended that you switch to the originpro package. PyOrigin is primarily for users who need to work with Origin version prior to 2021. |
Contents
Description
Get the pages collection in folder.
Syntax
PageBases()
Parameters
Return
The pages collection in folder.
Examples
EX1
import PyOrigin Folder=PyOrigin.ActiveFolder() print('The pages contained in folder are:') for page in Folder.PageBases(): print(page.GetName())