<?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: Creating a Table That Repeats the Headers in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/creating-a-table-that-repeats-the-headers/m-p/13873802#M86002</link>
    <description>&lt;P&gt;You have to enable the appropriate Flags in the table's BreakOptions property. See the &lt;A href="https://help.autodesk.com/view/OARX/2025/ENU/?guid=OARX-ManagedRefGuide-Autodesk_AutoCAD_DatabaseServices_TableBreakOptions" target="_blank" rel="noopener"&gt;TableBreakOptions.RepeatTopLabels &lt;/A&gt;enum member.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 30 Oct 2025 15:56:01 GMT</pubDate>
    <dc:creator>ActivistInvestor</dc:creator>
    <dc:date>2025-10-30T15:56:01Z</dc:date>
    <item>
      <title>Creating a Table That Repeats the Headers</title>
      <link>https://forums.autodesk.com/t5/net-forum/creating-a-table-that-repeats-the-headers/m-p/13873775#M86000</link>
      <description>&lt;P&gt;I have code that creates the table style and also creates a table.&amp;nbsp; I've set a few options like layer, width, and BreakEnabled.&amp;nbsp; I would like to set the option for repeating headers, but I can't find anything.&amp;nbsp; The goofy AI in Google tells me different things on how to do it, but none of them work.&lt;/P&gt;&lt;P&gt;Does anyone have a way to create a table and set it so that it has a repeating header?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2025 15:40:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/creating-a-table-that-repeats-the-headers/m-p/13873775#M86000</guid>
      <dc:creator>mgorecki</dc:creator>
      <dc:date>2025-10-30T15:40:05Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Table That Repeats the Headers</title>
      <link>https://forums.autodesk.com/t5/net-forum/creating-a-table-that-repeats-the-headers/m-p/13873802#M86002</link>
      <description>&lt;P&gt;You have to enable the appropriate Flags in the table's BreakOptions property. See the &lt;A href="https://help.autodesk.com/view/OARX/2025/ENU/?guid=OARX-ManagedRefGuide-Autodesk_AutoCAD_DatabaseServices_TableBreakOptions" target="_blank" rel="noopener"&gt;TableBreakOptions.RepeatTopLabels &lt;/A&gt;enum member.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2025 15:56:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/creating-a-table-that-repeats-the-headers/m-p/13873802#M86002</guid>
      <dc:creator>ActivistInvestor</dc:creator>
      <dc:date>2025-10-30T15:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Table That Repeats the Headers</title>
      <link>https://forums.autodesk.com/t5/net-forum/creating-a-table-that-repeats-the-headers/m-p/13873815#M86004</link>
      <description>&lt;P&gt;Ok, thanks, I'll give this a try.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2025 16:00:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/creating-a-table-that-repeats-the-headers/m-p/13873815#M86004</guid>
      <dc:creator>mgorecki</dc:creator>
      <dc:date>2025-10-30T16:00:44Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Table That Repeats the Headers</title>
      <link>https://forums.autodesk.com/t5/net-forum/creating-a-table-that-repeats-the-headers/m-p/13881043#M86134</link>
      <description>&lt;P&gt;This is what I ended up doing which sets the RepeatTopLabels to 2 (True)&lt;/P&gt;&lt;LI-CODE lang="general"&gt;Using tableTrans As Transaction = podDB.TransactionManager.StartTransaction()
    Dim smdBT As BlockTable = DirectCast(tableTrans.GetObject(podDWG.Database.BlockTableId, OpenMode.ForRead), BlockTable)
    Dim smdTableBtr As BlockTableRecord = CType(tableTrans.GetObject(smdBT(BlockTableRecord.ModelSpace), OpenMode.ForWrite), BlockTableRecord)
    Dim txtTbl As TextStyleTable = CType(tableTrans.GetObject(podDB.TextStyleTableId, OpenMode.ForRead), TextStyleTable)
    Dim smdTable As Table = New Table()
    tableLocY = ((dtaCellHgt * 2) + hdrCellHgt)
    tableLoc = New Point3d(tableLocX, tableLocY, 0)
    smdTable.Position = tableLoc
    smdTable.Width = smdTableWidth
    smdTable.BreakEnabled = True
    smdTable.BreakOptions = CType(TableBreakOptions.RepeatTopLabels, DatabaseServices.TableBreakOptions)
:
:&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 04 Nov 2025 21:58:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/creating-a-table-that-repeats-the-headers/m-p/13881043#M86134</guid>
      <dc:creator>mgorecki</dc:creator>
      <dc:date>2025-11-04T21:58:41Z</dc:date>
    </item>
  </channel>
</rss>

