block table with hidden cell borders.

block table with hidden cell borders.

mid-awe
Collaborator Collaborator
11,058 Views
8 Replies
Message 1 of 9

block table with hidden cell borders.

mid-awe
Collaborator
Collaborator

Hi all,

 

I have somehow hidden the cell borders on my block table. That is awesome, but unfortunately I cannot reproduce it. I have searched everywhere for any info but I cannot find anything beyond the obvious customization tools.

 

I have attached my anomalous DWG in hope that someone here can help me uncover the secret. It would seem that I am not the only one to want the level of "hidden" found in the attached file.

 

I know that this is a very intelligent group here; please help.

 

Thank you in advance for any help/suggestions.

0 Likes
Accepted solutions (1)
11,059 Views
8 Replies
Replies (8)
Message 2 of 9

Ranjit_Singh
Advisor
Advisor

Maybe like this.Table_Border.gif

Message 3 of 9

mid-awe
Collaborator
Collaborator

That looks like it works, but infact I cannot see what it is that you click on at the last while your cursor moves to the bottom below the area viewable within your graphic. What did you click to make all the borders disappear?

 

The table as it appears in the DWG I shared, is how I need the final result to be.

 

Thank you.

0 Likes
Message 4 of 9

pbejse
Mentor
Mentor

@mid-awe wrote:

That looks like it works, but infact I cannot see what it is that you click on at the last while your cursor moves to the bottom below the area viewable within your graphic. What did you click to make all the borders disappear?

 

The table as it appears in the DWG I shared, is how I need the final result to be.

 

Thank you.


All you want is to know how you manage to make the borders disappear?

Select your table

When the columns (A - C)  and row ( 1 - 6 ) appear, click on the box above 1 and left side of A

The colour would be different from the rest.

Right click on that, You will see borders on the menu

Click No Borders...

 

 

 

Message 5 of 9

mid-awe
Collaborator
Collaborator

Thanks for the reply, i have been very busy and unable to check.

 

I do know how to set the table to no borders. That only effects the print, I believe. I am hoping to learn how to hide the table borders in the view. I understand how my question could be misunderstood.

 

Whenever I make a table I can hide all the borders that I don't want to print, but in my example DWG the table borders are not visible in the view nor the print.

 

Hopefully that makes sense. I considered if it is a sysvar, but without having any idea where to look, it could take all day to find.

 

Thank you again for the reply.

0 Likes
Message 6 of 9

pbejse
Mentor
Mentor
Accepted solution
I guess your confusing gridlines with borders, turned on / thaw defpoints if you want to "see" the gridlines
Message 7 of 9

mid-awe
Collaborator
Collaborator

certainly confused Smiley Indifferent

 

Thank you very much. I will try it out in the morning.

0 Likes
Message 8 of 9

scot-65
Advisor
Advisor
There are at least two methods for not showing the "grid" lines.

The first is editing the table definition and turning off the grid.
Command TABLESTYLE and select the "Modify..." button and find
the "Borders" tab. When the layer the table is located on is frozen,
these "No Borders" will still show up in the editor. BINGO, huh?

The second method involves assigning the borders to a color that
does not print (CTB method). Open up the pen table and select
a color to use. "Grayscale" to ON and "Screening" to 0%. While
you are at it, set the layer called Defpoints to this same color.
It is a visual cue that the color will not print. Now, when the layer
that the table is located on is frozen, the borders will no longer
show in the editor.

Possibly a third method, which will bypass the CTB route -
Assign the borders to color 255?

???

Scot-65
A gift of extraordinary Common Sense does not require an Acronym Suffix to be added to my given name.

0 Likes
Message 9 of 9

mid-awe
Collaborator
Collaborator

Thank you for the information. 

 

I generate my tables through lisp and set the cell visibility with:

(VLA-SetCellGridVisibility TblObj ROWCNT 0 acBottomMask :VLAX-False)
(VLA-SetCellGridVisibility TblObj ROWCNT 0 acLeftMask :VLAX-False)
(VLA-SetCellGridVisibility TblObj ROWCNT 0 acRightMask :VLAX-False)
(VLA-SetCellGridVisibility TblObj ROWCNT 0 acTopMask :VLAX-False)

This may not be the simplest method.

0 Likes