<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Table Outline invisible in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/table-outline-invisible/m-p/3535170#M54717</link>
    <description>&lt;P&gt;Me too...&lt;/P&gt;&lt;P&gt;But glad if this helps,&lt;/P&gt;&lt;P&gt;Cheers &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 11 Jul 2012 19:57:18 GMT</pubDate>
    <dc:creator>Hallex</dc:creator>
    <dc:date>2012-07-11T19:57:18Z</dc:date>
    <item>
      <title>Table Outline invisible</title>
      <link>https://forums.autodesk.com/t5/net-forum/table-outline-invisible/m-p/3526250#M54714</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a property available which changes the oultine of a table to invisible / not printable&lt;/P&gt;&lt;P&gt;By default it prints the lines around and inside the table,&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;anyone?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gerald&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jul 2012 08:53:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/table-outline-invisible/m-p/3526250#M54714</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-04T08:53:12Z</dc:date>
    </item>
    <item>
      <title>Re: Table Outline invisible</title>
      <link>https://forums.autodesk.com/t5/net-forum/table-outline-invisible/m-p/3526498#M54715</link>
      <description>&lt;P&gt;See cell borders property,&lt;/P&gt;&lt;PRE&gt;       [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();
            }
        }&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#800000"&gt;~'J'~&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jul 2012 14:01:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/table-outline-invisible/m-p/3526498#M54715</guid>
      <dc:creator>Hallex</dc:creator>
      <dc:date>2012-07-04T14:01:42Z</dc:date>
    </item>
    <item>
      <title>Re: Table Outline invisible</title>
      <link>https://forums.autodesk.com/t5/net-forum/table-outline-invisible/m-p/3535142#M54716</link>
      <description>&lt;P&gt;thx for the reply it was exactly what I was looking for, sometime you don't see the trees in the forest.&lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://forums.autodesk.com/i/smilies/16x16_smiley-wink.png" alt="Smiley Wink" title="Smiley Wink" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jul 2012 19:38:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/table-outline-invisible/m-p/3535142#M54716</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-11T19:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: Table Outline invisible</title>
      <link>https://forums.autodesk.com/t5/net-forum/table-outline-invisible/m-p/3535170#M54717</link>
      <description>&lt;P&gt;Me too...&lt;/P&gt;&lt;P&gt;But glad if this helps,&lt;/P&gt;&lt;P&gt;Cheers &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jul 2012 19:57:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/table-outline-invisible/m-p/3535170#M54717</guid>
      <dc:creator>Hallex</dc:creator>
      <dc:date>2012-07-11T19:57:18Z</dc:date>
    </item>
  </channel>
</rss>

