Turning the work plane visibility of each work plane / axle with a shortcut on or off

panev84
Participant

Turning the work plane visibility of each work plane / axle with a shortcut on or off

panev84
Participant
Participant

Hello everyone, I have a question about using iLogic in Inventor 2022. Is it possible to make each work plane or axis visible through a shortcut or hotkey?

I know that in Inventor 2023, this feature is available and can be accessed by pressing ALT + V. However, for an upcoming exam, I am required to use Inventor 2022 which may not have this feature.

0 Likes
Replies (3)

tyler.warner
Advocate
Advocate

@panev84 You can find this feature in the 'View' tab in the 'Object Visibility' drop-down (shown below). Hovering over each command will show the shortcut. Is this what you're looking for or do you still need the iLogic?

 

(Ctrl + ]) will toggle origin plane visibility.

(Ctrl + /) will toggle origin axis visibility.

(Ctrl + .) will toggle origin point visibility.

(Alt + ]) will toggle work plane visibility.

(Alt + /) will toggle work axis visibility.

(Alt + .) will toggle work point visibility.

 

tylerwarner_0-1677072989112.png

 

If this solved your problem or answered your question, please click ACCEPT SOLUTION.
If this helped you, please click LIKE.
0 Likes

panev84
Participant
Participant

Hi there, I attempted to view the sketch, but unfortunately it did not appear. It would be greatly appreciated if there is a method to utilize iLogic to display each individual sketch.
panev84_0-1678448634122.png
Best regards,

Manoel Panev

 

0 Likes

tyler.warner
Advocate
Advocate

@panev84 in a part file you can use this code to toggle the visibility of all sketches.

 

Dim oDocument As PartDocument = ThisDoc.Document
Dim oCompDefinition As PartComponentDefinition = oDocument.ComponentDefinition

For Each oSketch As PlanarSketch In oCompDefinition.Sketches
	oSketch.Visible = True
Next
If this solved your problem or answered your question, please click ACCEPT SOLUTION.
If this helped you, please click LIKE.
0 Likes