Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

2D drawing- Delete column in table 1

Status
Not open for further replies.

CAD2015

Automotive
Joined
Jan 21, 2006
Messages
2,079
Location
US
Hi,

How could I delete a column/row in a table?

image_hukp0e.png


Thanks

CAD 2015
 
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top