I want to set a table autofit in Catia drawing. But I can't find any command. I'm looking forward to getting some guidance. Thanks
[]
There is my simple code.
Dim oDoc As Document
Dim oView As DrawingView
Dim oTable As DrawingTables
Set oDoc = CATIA.ActiveDocument
Set oSheets = oDoc.Sheets
Set oViews = oSheets.ActiveSheet.Views
Set oView = oViews.ActiveView
Set oTable = oView.Tables
For i = 1 To oTable.Count
'Debug.Print oneTab.Name
'oTable.Item(i).AnchorPoint = CatTableBottomRight
Next