Row visibility

Row visibility

Anonymous
Not applicable
419 Views
4 Replies
Message 1 of 5

Row visibility

Anonymous
Not applicable
The API doesn't appear to provide the ability to turn visibility off on a custom table row. Is there anyway to turn off the visibility of a row?

Autodesk: do you have plans on adding this functionality to the API?

Thanks,
Nate
0 Likes
420 Views
4 Replies
Replies (4)
Message 2 of 5

Anonymous
Not applicable
This capability was added to the API in Inventor 2009. The Row.Visible
property provides this.

Sanjay-
0 Likes
Message 3 of 5

Anonymous
Not applicable
Awesome Thanks for the quick responses. Now I just need to get my IS Team to install the new version. We are still on 2008.
0 Likes
Message 4 of 5

Ktelang
Collaborator
Collaborator

Please help me, I am using 2012

I have a ipart linked customtable inserted

in a drawing using general table command in

Drawing environment.

 

Dim OrDoc As DrawingDocument, OrDocSheet As Sheet
Set OrDoc = ThisApplication.ActiveDocument
Set OrDocSheet = OrDoc.Sheets("Sheet:1")

 

Dim Table As CustomTable
Set Table = OrDocSheet.CustomTables.Item(1)

Dim oRow As Row
Set oRow = Table.Rows.Item(3)
oRow.Visible  '... is this sytanx correct, as its giving me some compile error "Invalid use of property"

 

Thanks

------------------------------------------------------------------------------
Config :: Intel (R) Xeon (R) CPU E31245 @ 3.30 GHz, 16.0 GB, 64bit win7
Inventor 2013 and Vault Basic 2013
-----------------------------------------------------------------------------
0 Likes
Message 5 of 5

Ktelang
Collaborator
Collaborator

Never mind it was syntax

 

Table.Rows(1).Visible = False
Table.Rows(3).Visible = True

 

 

------------------------------------------------------------------------------
Config :: Intel (R) Xeon (R) CPU E31245 @ 3.30 GHz, 16.0 GB, 64bit win7
Inventor 2013 and Vault Basic 2013
-----------------------------------------------------------------------------
0 Likes