Hello @FINET_Laurent ,
Just a quick code, which indicates which view needs updating in a message box. If this is something you are looking for.
Try this code, Which Iterates through all the views in drawing and checks whether they are updated or not.
Dim oDoc As DrawingDocument = ThisApplication.ActiveDocument
Dim oSheet As Sheet = oDoc.ActiveSheet
For Each oView As DrawingView In oSheet.DrawingViews
If oView.UpToDate = True
MessageBox.Show(oView.Name)
End If
Next
You can modify this code to suit your requirements, like showing all the views in one Message box, currently I have not done that, but this will give you idea probably on what you are looking for, If I have understood correctly.
If this has answered your question, please accept this as solution.
Regards,
Dutt Thakar
If this answer has solved your problem please ACCEPT SOLUTION and hit like if you found it helpful..!
Regards,
Dutt Thakar
LinkedIn