Base View Indicator

Base View Indicator

inventor4578
Advocate Advocate
417 Views
4 Replies
Message 1 of 5

Base View Indicator

inventor4578
Advocate
Advocate

Hi !

I have a very quick question :

How to know what is the BASEVIEW on my drawing ? 

(By menu or by ilogic, vba....)

 

Thank you very much,

Regards,

0 Likes
418 Views
4 Replies
Replies (4)
Message 2 of 5

SharkDesign
Mentor
Mentor

Easiest way is to just look at your browser and it's the one at the top. 

 

jameswillo_0-1626677810581.png

 

  Inventor Certified Professional
Message 3 of 5

inventor4578
Advocate
Advocate

Ok thank you !

 

How to highlight by iLogic, or select by iLogic ? (or maybe add label)

 

Thanks you very much,

Regards.

0 Likes
Message 4 of 5

mcgyvr
Consultant
Consultant

@inventor4578 wrote:

Ok thank you !

 

How to highlight by iLogic, or select by iLogic ? (or maybe add label)

 

Thanks you very much,

Regards.


Dim doc As DrawingDocument = ThisDoc.Document
Dim oSheet As Sheet = doc.ActiveSheet
Dim oView As DrawingView = oSheet.DrawingViews.Item(1)'Select View for Item number

ThisApplication.CommandManager.DoSelect(oView)'Select View


-------------------------------------------------------------------------------------------
Inventor 2023 - Dell Precision 5570

Did you find this reply helpful ? If so please use the Accept Solution button below.
Maybe buy me a beer through Venmo @mcgyvr1269
Message 5 of 5

inventor4578
Advocate
Advocate

It's working ! Thanks.

Another point can be how to unselect ? 

I would like to make a blinking select so : Select/Unselect/Select.... 

Maybe without a wait command of 0.5 sec between each selection.

 

Thank you very much,

Best regards.