Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross 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

Computer
Jan 21, 2006
1,932
US
Hi,

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

image_hukp0e.png


Thanks

CAD 2015
 
Replies continue below

Recommended for you

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