.NET
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Table Outline invisible

3 REPLIES 3
SOLVED
Reply
Message 1 of 4
Gaituuth
487 Views, 3 Replies

Table Outline invisible

Hi,

 

Is there a property available which changes the oultine of a table to invisible / not printable

By default it prints the lines around and inside the table,

I want to change it that it is not visible on my print, but I don't know which property I should use and how I can do it.

 

anyone?

 

Best regards,

 

Gerald

3 REPLIES 3
Message 2 of 4
Hallex
in reply to: Gaituuth

See cell borders property,

       [CommandMethod("tablevis")]
        public static void setGridLinesInvisible()
        {
            Document doc = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument;
            Editor ed = doc.Editor;
            Database db = doc.Database;
            PromptEntityOptions opts = new PromptEntityOptions("\nSelect the table:");
            opts.SetRejectMessage("\nMust be the table only...");
            opts.AddAllowedClass(typeof(Table), true);
            PromptEntityResult res = ed.GetEntity(opts);
            if (res.Status != PromptStatus.OK) return;
            using (Transaction tr = db.TransactionManager.StartTransaction())
            {
                DBObject obj = tr.GetObject(res.ObjectId, OpenMode.ForRead, false) as DBObject;
                Table tbl = obj as Table;
                if (tbl==null) return;
                tbl.UpgradeOpen();
               tbl.Cells.Borders.Bottom.IsVisible = false;
               tbl.Cells.Borders.Top.IsVisible = false;
               tbl.Cells.Borders.Right.IsVisible = false;
               tbl.Cells.Borders.Left.IsVisible = false;
                tr.Commit();
            }
        }

 

 

~'J'~

_____________________________________
C6309D9E0751D165D0934D0621DFF27919
Message 3 of 4
Gaituuth
in reply to: Hallex

thx for the reply it was exactly what I was looking for, sometime you don't see the trees in the forest.Smiley Wink

Message 4 of 4
Hallex
in reply to: Gaituuth

Me too...

But glad if this helps,

Cheers 🙂

_____________________________________
C6309D9E0751D165D0934D0621DFF27919

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk DevCon in Munich May 28-29th


Autodesk Design & Make Report

”Boost