Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.

I expect that the option PerspectiveWithOrthoFaces is a combination of settings of the camera. If you can figure out what those settings are then you can make an iLogic rule with those settings.  That rule could be triggerd on opening of each file? (i couldn't find the correct settings)

Anyway you can check the camera settings like this.

Dim cam As Camera = ThisApplication.ActiveView.Camera 
MsgBox(cam.Perspective & " - " & cam.PerspectiveAngle)

The properties Perspective and PerspectiveAngle are shown here in a msgbox. More properties can be found in the help files.

If you know what those settings are then your settings rule could look like this:

Dim cam As Camera = ThisApplication.ActiveView.Camera 
cam.Perspective = True
cam.PerspectiveAngle = 0.00001
cam.Apply()

Maby you want to learn more about working with the camera api, a good starting point are these posts by @BrianEkins 

https://modthemachine.typepad.com/my_weblog/2013/09/working-with-cameras-part-1.html 

https://modthemachine.typepad.com/my_weblog/2013/09/working-with-cameras-part-2.html 

 

Jelte de Jong
Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.

EESignature


Blog: hjalte.nl - github.com