Update snapshot in presentation (VBA)?

Update snapshot in presentation (VBA)?

Anonymous
Not applicable
621 Views
2 Replies
Message 1 of 3

Update snapshot in presentation (VBA)?

Anonymous
Not applicable

Hello,
anyone knews, how to access the options for snapshots in presentationdocuments?

In example I want to update the snapshot with VBA or if I want to add the name of the snapshot into properties.


Aktualisieren.png

0 Likes
Accepted solutions (1)
622 Views
2 Replies
Replies (2)
Message 2 of 3

chandra.shekar.g
Autodesk Support
Autodesk Support
Accepted solution

Hi @Anonymous,

 

SnapShotView object can be obtained from presentation document using following VBA code. Unfortunately, "Update" method for PresentationSnapshotView is exposed in Inventor 2018.

 

 


Sub Main() Dim oDoc As PresentationDocument Set oDoc = ThisApplication.ActiveDocument Dim oScene As PresentationScene Set oScene = oDoc.Scenes.Item(1) Dim oView As PresentationSnapshotView Set oView = oScene.SnapshotViews.Item(1) End Sub

You can log this wish list at idea station using following link.

 

https://forums.autodesk.com/t5/inventor-ideas/idb-p/v1232/tab/most-recent

 

Thanks and regards,


CHANDRA SHEKAR G
Developer Advocate
Autodesk Developer Network



Message 3 of 3

Anonymous
Not applicable

Okay. Thx. Thats okay. We will upgrade to IV2018 in summer.

0 Likes