|
ED
|
avaliable
|
RT
|
not used
|
Copies the settings of an existing "DynPicture" object to the current object.
Sub zenOn_CopyDynPicture() 'Declarations Dim zPic As DynPicture Dim zPicCopy As DynPicture 'Initialize zPic with the start picture Set zPic = MyWorkspace.ActiveDocument.DynPictures.Item("START") 'Initialize zPicCopy by creating a new picture linked to template "MAIN_WIZARD" as standard picture type Set zPicCopy = MyWorkspace.ActiveDocument.DynPictures.Create("zPicCopy", "MAIN_WIZARD", 0) 'Copy the settings from zPic to zPicCopy zPicCopy.Copy zPic End Sub