<?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 Table of Contents 9.3 vs 9.4 in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/table-of-contents-9-3-vs-9-4/m-p/192842#M5041</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: sean_jones&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;So, is there no location within ArcMap to remove a custom Contents View? &lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;Not yet but were working on it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Dec 2009 23:56:08 GMT</pubDate>
    <dc:creator>Anonymous User</dc:creator>
    <dc:date>2009-12-03T23:56:08Z</dc:date>
    <item>
      <title>Table of Contents 9.3 vs 9.4</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/table-of-contents-9-3-vs-9-4/m-p/192834#M5033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: maplogic&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying to find more information about how the ArcMap Table of Contents (IContentsView) has changed in 9.4 compared to older versions.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Specifically, can developers still add custom tabs in the Table of Contents?&amp;nbsp; If so, how is this done?&amp;nbsp; Code that worked to add a custom tab in older versions no longer seems to work.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've also noticed that a Table of Contents Tab no longer exists in the ArcMap options dialog.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would appreciate any insider information about this.&amp;nbsp; Does ESRI want developers to use IDockableWindow instead?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2009 16:48:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/table-of-contents-9-3-vs-9-4/m-p/192834#M5033</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2009-10-27T16:48:27Z</dc:date>
    </item>
    <item>
      <title>Table of Contents 9.3 vs 9.4</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/table-of-contents-9-3-vs-9-4/m-p/192835#M5034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Maplogic,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Developers can still add custom tabs in the Table of Contents, but they would not show up as tabs, they would be the buttons that you currently see in the ArcMap TOC.&amp;nbsp; Your old code should just work, and all you should need to do is use IContentsView3, which has the Bitmap and Tooltip property so that your button in the TOC will have an image.&amp;nbsp; Make sure that you have done what you need to do to upgrade your code so it works with 9.4.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://help.esri.com/EN/sdk/9.4/ArcObjects_NET/conceptualhelp/index.htm#/d/000100000183000000/"&gt;see this link&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I spoke with someone on when you should be using a ContentsView over a DockableWindow, and our recommendation is that you should create a ContentsView when you need to work with Layers in the Map document, otherwise your should be creating a DockableWindow.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regarding the Table of Contents tab in the options dialog, it looks like you can see some of the options by clicking the options button in the TOC.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2009 17:41:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/table-of-contents-9-3-vs-9-4/m-p/192835#M5034</guid>
      <dc:creator>RalfGottschalk</dc:creator>
      <dc:date>2009-10-27T17:41:48Z</dc:date>
    </item>
    <item>
      <title>Bitmap ?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/table-of-contents-9-3-vs-9-4/m-p/192836#M5035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: Grieck&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It appears that the IContentsView3.Bitmap is read only. Is the intention to allow developers to assign a bitmap for the TOC image?&amp;nbsp; Same goes for Tooltip.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;IContentsView3 pContView = pMxDoc.CurrentContentsView as IContentsView3;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;pContView.Bitmap = 8;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;pContView.Tooltip = "OSPInSight";&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Property or indexer 'ESRI.ArcGIS.ArcMapUI.IContentsView3.Bitmap' cannot be assigned to -- it is read only &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Property or indexer 'ESRI.ArcGIS.ArcMapUI.IContentsView3.Tooltip' cannot be assigned to -- it is read only&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;G&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Nov 2009 21:44:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/table-of-contents-9-3-vs-9-4/m-p/192836#M5035</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2009-11-30T21:44:43Z</dc:date>
    </item>
    <item>
      <title>Table of Contents 9.3 vs 9.4</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/table-of-contents-9-3-vs-9-4/m-p/192837#M5036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Your custom toc class has to implement IContentsView3 rather than IContentsView to return the bitmap and tooltip properties. The doc and sample has been updated for Beta 2 but here's the basic implementation for the extra properties. Refer to the 9.3 sample for the remaining code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;C#&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public int Bitmap&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; get&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; string bitmapResourceName = GetType().Name + ".bmp";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(GetType(), bitmapResourceName);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bmp.MakeTransparent(bmp.GetPixel(1, 1)); //alternatively use a .png with transparency&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return bmp.GetHbitmap().ToInt32();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public string Tooltip&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; get { return "Layer Types (C#)"; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;VB.Net&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Public ReadOnly Property Bitmap() As Integer Implements IContentsView3.Bitmap&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Get&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim bitmapResourceName As String = Me.GetType().Name + ".bmp"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim bmp As System.Drawing.Bitmap = New System.Drawing.Bitmap(Me.GetType(), bitmapResourceName)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bmp.MakeTransparent(bmp.GetPixel(1, 1)) 'alternatively use a .png with transparency&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Return bmp.GetHbitmap().ToInt32()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Get&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Property&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Public ReadOnly Property Tooltip() As String Implements IContentsView3.Tooltip&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Get&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Return "Layer Types (VB.NET)"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Get&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Property&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The bitmap is 16x16.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Nov 2009 23:18:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/table-of-contents-9-3-vs-9-4/m-p/192837#M5036</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2009-11-30T23:18:18Z</dc:date>
    </item>
    <item>
      <title>TOC</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/table-of-contents-9-3-vs-9-4/m-p/192838#M5037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: rlwatson&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the responses from the ESRI guys.&amp;nbsp; I had the same problem and now the solution is clear.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Maybe all of this documentation comes in beta 2.&amp;nbsp; Right now, it is a bit of a struggle trying to figure out the list of things that I need to do in order to port a very large custom application from 9.3.1. to 9.4.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 11:46:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/table-of-contents-9-3-vs-9-4/m-p/192838#M5037</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2009-12-02T11:46:07Z</dc:date>
    </item>
    <item>
      <title>I'm still not getting it . . .</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/table-of-contents-9-3-vs-9-4/m-p/192839#M5038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I think I'm still not understanding how I can "set" the bitmap image of this method when it doesn't have a "set" property. Even the help documents it as a "get" only method.&amp;nbsp; What exactly do you mean by implement IContentsView3? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have done the following:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;IContentsView3 pContView = pMxDoc.CurrentContentsView as IContentsView3;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;which exposes pContView.Bitmap and pContView.Tooltip&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Yet anything I try to do with these two methods reports back that they are read only.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; rlwatson - Do you have working code that you could post?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 14:57:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/table-of-contents-9-3-vs-9-4/m-p/192839#M5038</guid>
      <dc:creator>GregRieck</dc:creator>
      <dc:date>2009-12-02T14:57:18Z</dc:date>
    </item>
    <item>
      <title>Table of Contents 9.3 vs 9.4</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/table-of-contents-9-3-vs-9-4/m-p/192840#M5039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: sean_jones&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Grieck,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Take a look at the 9.3 help page and associated sample to see how it was done at 9.3.&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://resources.esri.com/help/9.3/ArcGISDesktop/dotnet/260508ab-5114-40eb-a315-29d7110e63b9.htm"&gt;http://resources.esri.com/help/9.3/ArcGISDesktop/dotnet/260508ab-5114-40eb-a315-29d7110e63b9.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For 9.4 we turned the tabs into buttons on the TOC toolbar. To support this you have to implement IContentsView3, which exposes the extra properties, in your custom class.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The 9.3 sample will still work in 9.4 once you fix up the references, compile and register (esriregasm), you just wont get an icon.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You cant change the bitmap or tooltip at run time.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;@rlwatson: Most of the SDK doc should be complete at beta2 including migration paths. Once you get beta2 (i dont have a date) let us know asap if it doesnt help you migrate your code.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 17:02:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/table-of-contents-9-3-vs-9-4/m-p/192840#M5039</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2009-12-02T17:02:44Z</dc:date>
    </item>
    <item>
      <title>IContentsView</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/table-of-contents-9-3-vs-9-4/m-p/192841#M5040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Sean, I got it working. So, is there no location within ArcMap to remove a custom Contents View? In 9.3 you can choose to not have some visible in the TOC.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 20:31:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/table-of-contents-9-3-vs-9-4/m-p/192841#M5040</guid>
      <dc:creator>GregRieck</dc:creator>
      <dc:date>2009-12-02T20:31:08Z</dc:date>
    </item>
    <item>
      <title>Table of Contents 9.3 vs 9.4</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/table-of-contents-9-3-vs-9-4/m-p/192842#M5041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: sean_jones&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;So, is there no location within ArcMap to remove a custom Contents View? &lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;Not yet but were working on it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2009 23:56:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/table-of-contents-9-3-vs-9-4/m-p/192842#M5041</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2009-12-03T23:56:08Z</dc:date>
    </item>
    <item>
      <title>Setting the font (Appearance) for the TOC</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/table-of-contents-9-3-vs-9-4/m-p/192843#M5042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;:confused:Howdy all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm trying to figure out how to set the font of my TOC, but the Tools &amp;gt; Options...&amp;gt;&amp;nbsp; Options form does no longer have a 'Table of Contents' tab for selecting the Appearance.&amp;nbsp; There is an options button, but it lacs the appearance.&amp;nbsp; Is this because this is still in Beta?&amp;nbsp; Or is there another way of setting the appearance of the TOC?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Dec 2009 15:24:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/table-of-contents-9-3-vs-9-4/m-p/192843#M5042</guid>
      <dc:creator>MiguelParedes</dc:creator>
      <dc:date>2009-12-09T15:24:57Z</dc:date>
    </item>
    <item>
      <title>Table of Contents 9.3 vs 9.4</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/table-of-contents-9-3-vs-9-4/m-p/192844#M5043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: gottralf&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There is no other place in ArcMap where you can change the font size for your TOC.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Do you or people in your organization use this option often?&amp;nbsp; I can log an enhancment for you to request to bring this functionality back.&amp;nbsp; It would be helpful to tell me why and how you use this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Dec 2009 21:33:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/table-of-contents-9-3-vs-9-4/m-p/192844#M5043</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2009-12-18T21:33:52Z</dc:date>
    </item>
  </channel>
</rss>

