dardoemoria
Mechanical
Hi colleagues,
I have problem with vba macro in CATIA V5.
I want to delete one of some sheets in my drawing.
Do you know how to solve it ?
it 's part of my actual code:
I was trying use methods like delete/remove. Unfortunately it doesn't work
Thank you in advance !
I have problem with vba macro in CATIA V5.
I want to delete one of some sheets in my drawing.
Do you know how to solve it ?
it 's part of my actual code:
Code:
Dim drawingDocument1 As Document
Set drawingDocument1 = CATIA.ActiveDocument
Set Viewcollection = drawingDocument1.Sheets.Item(2)
Viewcollection.Activate
'now I want to DELETE this active sheet. Do you know how to do it ? THANKS ! :)
I was trying use methods like delete/remove. Unfortunately it doesn't work
Thank you in advance !