Adding new page: inheriting layers

  • Thread starter Geert Vancompernolle
  • Start date
G

Geert Vancompernolle

Hi,

When adding a new page to an already existing Visio diagram with defined
layers, is it possible to take over the items in the layer overview of the
first page in subsequent pages (although nothing is on those layers yet on
the new pages)?

-- Geert
 
A

Al Edlund

when I create a new page and need certain layers I usually end up creating
them programmatically.

' Add network status layers
Set layersObj = Page.Layers

Set layerObj = layersObj.Add("NetAvailable")
Set pagCell = Page.PageSheet.Cells("layers.color[1]")
SetCellValueToString pagCell, "3" ' green

Al
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top