- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have an application that generates and stores jpg images of Inventor models.
I would like to hide a workplane in the generated image. I made the workplane invisible (unchecked visibility) in both the Master and Default views, but the workplane is still visible in the generated image.
Here's the snippet of VB code that generates the jpg:
Dim oDoc As Inventor.Document = OpenDoc(model)
Dim oView As Inventor.View = Nothing
oView = oDoc.Views.Item(1)
Dim oCamera As Inventor.Camera
oCamera = oView.Camera
oCamera.ViewOrientationType = Inventor.ViewOrientationTypeEnum.kIsoTopRightViewOrientation
oCamera.SetExtents(64, 64)
oCamera.Fit()
oCamera.Apply()
oView.SaveAsBitmap(target, 64, 64)
Any ideas?
Thanks
Mike G
Solved! Go to Solution.