Enumerate pages
Enumerate all pages from the active document
$pages = Get-VisioPage
Enumerate all pages from the active document that have a specific name
$pages = Get-VisioPage "Page-1"
Enumerate all pages from the active document using wildcards
$pages = Get-VisioPage "*foo"
Last updated