Nov 15, 2018 #1 CAD2015 Computer Jan 21, 2006 1,932 US Hi, How could I delete a column/row in a table? Thanks CAD 2015
Nov 15, 2018 1 #2 ferdo Mechanical Jul 4, 2002 2,837 RO Hi Double click on table, right mouse button click, contextual menu, Delete Regards Fernando https://picasaweb.google.com/102257836106335725208 - Romania https://picasaweb.google.com/103462806772634246699/ - EU Upvote 0 Downvote
Hi Double click on table, right mouse button click, contextual menu, Delete Regards Fernando https://picasaweb.google.com/102257836106335725208 - Romania https://picasaweb.google.com/103462806772634246699/ - EU
Nov 18, 2018 #3 weagan22 Aerospace Aug 27, 2015 79 US Sub CATMain() Dim uSel As Selection Set uSel = CATIA.ActiveDocument.Selection Dim selTable As DrawingTable Set selTable = uSel.Item(1).Value selTable.RemoveColumn (2) End Sub Upvote 0 Downvote
Sub CATMain() Dim uSel As Selection Set uSel = CATIA.ActiveDocument.Selection Dim selTable As DrawingTable Set selTable = uSel.Item(1).Value selTable.RemoveColumn (2) End Sub