<?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: Property palette and custom entities in ObjectARX Forum</title>
    <link>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5726584#M11020</link>
    <description>&lt;P&gt;Sorry, I missed the attachment.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here it is.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Balaji&lt;/P&gt;</description>
    <pubDate>Mon, 20 Jul 2015 06:18:39 GMT</pubDate>
    <dc:creator>Balaji_Ram</dc:creator>
    <dc:date>2015-07-20T06:18:39Z</dc:date>
    <item>
      <title>Property palette and custom entities</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5720572#M11017</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a custom entity with some complex properties such as a dynamically populating list, enumerations etc. I tried the non-COM way of populating the property palette but couldnt find how to display the list of properties. I tried the Square sample provided in the ObjectARX 2015 SDK to see how the COM way of displaying the property palette works. Unfortunately I couldnt get it work.&lt;/P&gt;&lt;P&gt;Could you provide me with a sample of displaying the properties of a custom object in property palette please?&lt;/P&gt;&lt;P&gt;What I am trying to achieve is in my custom object I have a list. This list is populated at run time. for one instance of the custom object I might have 3 items in the list, for another instance of the custom object I might 5 items in the list. for example, the list has 3 items say A, B, and C, I should be able to see 3 individual properties A, B and C in the property palette in addition to my other properties.&lt;/P&gt;&lt;P&gt;So when I select my object, the property palette should display something like&lt;/P&gt;&lt;P&gt;A ----&lt;/P&gt;&lt;P&gt;B ----&lt;/P&gt;&lt;P&gt;C ----&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 15px;"&gt;other_properties_1 -----&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 15px;"&gt;other_properties_2 -----&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also would like to know if there is a simple way to display the properties of a custom object through C#.NET. I can wrap the custom entity to use in .NET but not sure how to display its properties in the palette. I have seen an article in the through_the_interface blog&amp;nbsp;&lt;A href="http://through-the-interface.typepad.com/through_the_interface/2009/03/exposing-autocads-properties-palette-functionality-to-net---part-2.html" target="_blank"&gt;http://through-the-interface.typepad.com/through_the_interface/2009/03/exposing-autocads-properties-palette-functionality-to-net---part-2.html&lt;/A&gt; , but it is more of dynamic properties.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ram.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jul 2015 13:19:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5720572#M11017</guid>
      <dc:creator>cadsindiaadn</dc:creator>
      <dc:date>2015-07-15T13:19:16Z</dc:date>
    </item>
    <item>
      <title>Re: Property palette and custom entities</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5724429#M11018</link>
      <description>&lt;P&gt;Hi Ram,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For OPM to recognize a static property as an enum property, override the "GetCustomPropertyCtrl" method and provide "CLSID_AcPePropertyEditorEnum" as the ActiveX control to use for this property. The values to be displayed in the combobox are to be provided by overiding the "GetPredefinedStrings" and "GetPredefinedValue" methods. These methods will let you change the values at runtime.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is a code snippet to do that :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;// idl
[propget, id(3), helpstring("property myenum")] HRESULT myenum1([out, retval] long* pVal);
[propput, id(3), helpstring("property myenum")] HRESULT myenum1([in] long newVal);
 
// COM Wrapper header
STDMETHOD(GetPredefinedStrings)(
        /* [in] */ DISPID dispID,
        /* [out] */ CALPOLESTR *pCaStringsOut,
        /* [out] */ CADWORD *pCaCookiesOut);
STDMETHOD(GetPredefinedValue)(
        /* [in] */ DISPID dispID, 
        /* [out] */ DWORD dwCookie, 
        /* [out] */ VARIANT *pVarOut);
 
// COM Wrapper cpp
//- IAcPiPropertyDisplay
STDMETHODIMP CMyObject::GetCustomPropertyCtrl (VARIANT Id, LCID lcid, BSTR *pProgId) {
            if ( pProgId == NULL )
                        return (E_FAIL) ;
           
            if ( V_I4(&amp;amp;Id) == 3 ) {
                        LPOLESTR progId;
                        ProgIDFromCLSID (CLSID_AcPePropertyEditorEnum, &amp;amp;progId);
                        *pProgId =::SysAllocString (progId);
 
                        return (S_OK) ;
            }
 
            return (E_NOTIMPL) ;
}
 
STDMETHODIMP CMyObject::GetPredefinedStrings(DISPID dispID, CALPOLESTR *pCaStringsOut, CADWORD *pCaCookiesOut)
{
            USES_CONVERSION;
 
            if( (dispID == 0x3))
            {
                        pCaStringsOut-&amp;gt;pElems = (LPOLESTR *)::CoTaskMemAlloc(sizeof(LPOLESTR) * 2);
                        pCaCookiesOut-&amp;gt;pElems = (DWORD *)::CoTaskMemAlloc(sizeof(DWORD) * 2);
 
                        pCaStringsOut-&amp;gt;pElems[0] = ::SysAllocString(L"First");
                        pCaCookiesOut-&amp;gt;pElems[0] = 1;
                        pCaStringsOut-&amp;gt;pElems[1] = ::SysAllocString(L"Second");
                        pCaCookiesOut-&amp;gt;pElems[1] = 2;
 
                        pCaStringsOut-&amp;gt;cElems = 2;
                        pCaCookiesOut-&amp;gt;cElems = 2;
                        return S_OK;
            }
            return  IOPMPropertyExtensionImpl&amp;lt;CMyObject&amp;gt;::GetPredefinedStrings(dispID,pCaStringsOut,pCaCookiesOut);    
}
 
STDMETHODIMP CMyObject::GetPredefinedValue(DISPID dispID, DWORD dwCookie, VARIANT *pVarOut)
{
            if(dispID == 0x3)
            {
                        if(dwCookie == 1)
                        {
                                    ::VariantCopy(pVarOut, &amp;amp;CComVariant((long)1));
                        }
                        else if(dwCookie == 2)
                        {
                                    ::VariantCopy(pVarOut, &amp;amp;CComVariant((long)2));
                        }
            }
            else
                        return IOPMPropertyExtensionImpl&amp;lt;CMyObject&amp;gt;::GetPredefinedValue(dispID, dwCookie, pVarOut);
 
    return S_OK;
}&lt;/PRE&gt;
&lt;P&gt;I have attached a sample project that should help get started.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are looking for the Non-COM property system, this blog post should help. But i do not think you can make the list change at runtime.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://adndevblog.typepad.com/autocad/2012/04/non-com-property-with-list-of-possible-values.html" target="_blank"&gt;http://adndevblog.typepad.com/autocad/2012/04/non-com-property-with-list-of-possible-values.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;About using .Net, unfortunately there is no direct AutoCAD .Net API to do that. The blog post that you mentioned in your post is a way to workaround that. But, I would recommend going the C++ route as you already have the custom entity implemented in C++ and avoid the additional wrapper.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Balaji&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jul 2015 09:29:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5724429#M11018</guid>
      <dc:creator>Balaji_Ram</dc:creator>
      <dc:date>2015-07-17T09:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: Property palette and custom entities</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5724813#M11019</link>
      <description>&lt;P&gt;Thanks very much Balaji.&lt;/P&gt;&lt;P&gt;Could you attach the sample project please?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ram.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jul 2015 14:15:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5724813#M11019</guid>
      <dc:creator>cadsindiaadn</dc:creator>
      <dc:date>2015-07-17T14:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: Property palette and custom entities</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5726584#M11020</link>
      <description>&lt;P&gt;Sorry, I missed the attachment.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here it is.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Balaji&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2015 06:18:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5726584#M11020</guid>
      <dc:creator>Balaji_Ram</dc:creator>
      <dc:date>2015-07-20T06:18:39Z</dc:date>
    </item>
    <item>
      <title>Re: Property palette and custom entities</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5726695#M11021</link>
      <description>&lt;P&gt;Thanks very much Balaji.&lt;/P&gt;&lt;P&gt;The sample being a ATL COM based one,&amp;nbsp;should I be registering this on the machine by copying it to the AutoCAD installation folder?&lt;/P&gt;&lt;P&gt;One of the concerns I have in registering a COM DLL is, this prevents me from having parallel versions of my product&amp;nbsp;on a machine.&lt;/P&gt;&lt;P&gt;This was the basis of my question for an alternative in CSharp.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ram.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2015 08:40:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5726695#M11021</guid>
      <dc:creator>cadsindiaadn</dc:creator>
      <dc:date>2015-07-20T08:40:29Z</dc:date>
    </item>
    <item>
      <title>Re: Property palette and custom entities</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5726706#M11022</link>
      <description>&lt;P&gt;Hi Ram,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Appload the .arx and the self-registration should take care of the registration provided you have admin rights to register it in the system.&lt;/P&gt;
&lt;P&gt;You do not need to copy to AutoCAD's install folder.&lt;/P&gt;
&lt;P&gt;For supporting multiple versions, you will need to provide new GUID for the COM wrapper if the interface changes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The idl file in the project should provide the GUIDs that you may need to find and replace with new GUID, in case you want to do that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Balaji&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2015 08:47:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5726706#M11022</guid>
      <dc:creator>Balaji_Ram</dc:creator>
      <dc:date>2015-07-20T08:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: Property palette and custom entities</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5726927#M11023</link>
      <description>&lt;P&gt;Hi Balaji,&lt;/P&gt;&lt;P&gt;Thanks. After running AutoCAD in administrator mode, I am able to see the properties for the line sample.&lt;/P&gt;&lt;P&gt;As I asked in my original question, my requirement is to add/remove the properties at runtime depending on the internal state of the object.&lt;/P&gt;&lt;P&gt;As an example, if I have a list of items which is populated at runtime inside my object, I should be able to add the properties according to the count of items in my list.&lt;/P&gt;&lt;P&gt;So, if I have two instances of MyTestEntityClass obj1 with 3 items in the list and obj2 with 2 items in the list, when I select Obj1 I should be able to add 3 properties and when I select Obj2 I should be able to add 2 properties in the palette.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was assuming I could do something with the method&lt;/P&gt;&lt;P&gt;GetElementStrings(/&lt;FONT color="#008000" face="Consolas" size="2"&gt;&lt;FONT color="#008000" face="Consolas" size="2"&gt;&lt;FONT color="#008000" face="Consolas" size="2"&gt;* [in] */&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; &lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;DISPID&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; &lt;FONT color="#808080" face="Consolas" size="2"&gt;&lt;FONT color="#808080" face="Consolas" size="2"&gt;&lt;FONT color="#808080" face="Consolas" size="2"&gt;dispID&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;, /&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#008000" face="Consolas" size="2"&gt;&lt;FONT color="#008000" face="Consolas" size="2"&gt;&lt;FONT color="#008000" face="Consolas" size="2"&gt;* [out] */&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; &lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;OPMLPOLESTR&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; &lt;FONT color="#6f008a" face="Consolas" size="2"&gt;&lt;FONT color="#6f008a" face="Consolas" size="2"&gt;&lt;FONT color="#6f008a" face="Consolas" size="2"&gt;__RPC_FAR&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; *&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#808080" face="Consolas" size="2"&gt;&lt;FONT color="#808080" face="Consolas" size="2"&gt;&lt;FONT color="#808080" face="Consolas" size="2"&gt;pCaStringsOut&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;, &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#008000" face="Consolas" size="2"&gt;&lt;FONT color="#008000" face="Consolas" size="2"&gt;&lt;FONT color="#008000" face="Consolas" size="2"&gt;/* [out] */&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; &lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;OPMDWORD&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; &lt;FONT color="#6f008a" face="Consolas" size="2"&gt;&lt;FONT color="#6f008a" face="Consolas" size="2"&gt;&lt;FONT color="#6f008a" face="Consolas" size="2"&gt;__RPC_FAR&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; *&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#808080" face="Consolas" size="2"&gt;&lt;FONT color="#808080" face="Consolas" size="2"&gt;&lt;FONT color="#808080" face="Consolas" size="2"&gt;pCaCookiesOut&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;)&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;But this is called only once for a type? If I copy and make several instances of the line in the sample, this method wasnt&amp;nbsp;called for all my instances?&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;Could you help me with achieving this please?&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;Thanks,&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;Ram.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2015 12:25:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5726927#M11023</guid>
      <dc:creator>cadsindiaadn</dc:creator>
      <dc:date>2015-07-20T12:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: Property palette and custom entities</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5730247#M11024</link>
      <description>&lt;P&gt;Hi Ram,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From what i understand so far, you will need a dynamic per-instance property to do that.&lt;/P&gt;
&lt;P&gt;But, before i can try and get a sample for it, c&lt;SPAN style="line-height: 15px;"&gt;an you clarify what your application needs to show and what you mean &lt;SPAN&gt;by "add 3 properties for one of the instances and 2 for the other instance" ?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="line-height: 15px;"&gt;&lt;SPAN&gt;Are you referring to the OPM property or enum values for a single OPM property ?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Possibly a screenshot showing the property palette for the two instances will help me understand.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Balaji&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2015 09:17:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5730247#M11024</guid>
      <dc:creator>Balaji_Ram</dc:creator>
      <dc:date>2015-07-21T09:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: Property palette and custom entities</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5730285#M11025</link>
      <description>&lt;P&gt;Hi Balaji,&lt;/P&gt;&lt;P&gt;I think yes, I need dynamic per instance property. but not sure about the terminologies.&lt;/P&gt;&lt;P&gt;I have attached two images. Assume I have a class Ring with a list as a member variable inside as shown below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;FONT face="Consolas" size="2"&gt;    struct Data
    {
        public string Name;
        public double Value;
    }

    class Ring
    {
        public IList&amp;lt;Data&amp;gt; MyProperties
        {
            get;
            set;
        }
    }&lt;/FONT&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt;now I have two instances of &lt;FONT color="#2b91af" face="Consolas" size="2"&gt;Ring&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;	    Ring ring1 = new Ring();
            ring1.MyProperties = new List&amp;lt;Data&amp;gt;()
                                            {
                                                new Data(){Name = "A", Value = 200},
                                                new Data(){Name = "B", Value = 300},
                                                new Data(){Name = "C", Value = 400},
                                                new Data(){Name = "D", Value = 500},
                                            };

            Ring ring2 = new Ring();
            ring2.MyProperties = new List&amp;lt;Data&amp;gt;()
                                            {
                                                new Data(){Name = "A", Value = 200},
                                                new Data(){Name = "B", Value = 300},                                              
                                            };&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000" face="arial,helvetica,sans-serif" size="2"&gt;&lt;FONT size="2"&gt;Now when I select Ring1 entity, I should be able to see the property palette as in ring1.png and selecting ring2 should look similar to ring2.png.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000" face="arial,helvetica,sans-serif" size="2"&gt;&lt;FONT size="2"&gt;Hope I am clear.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000" face="arial,helvetica,sans-serif" size="2"&gt;&lt;FONT size="2"&gt;Thanks,&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000" face="arial,helvetica,sans-serif" size="2"&gt;&lt;FONT size="2"&gt;Ram.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2015 10:26:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5730285#M11025</guid>
      <dc:creator>cadsindiaadn</dc:creator>
      <dc:date>2015-07-21T10:26:43Z</dc:date>
    </item>
    <item>
      <title>Re: Property palette and custom entities</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5733298#M11026</link>
      <description>&lt;P&gt;There are two ways to approach this :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) If you know already that there are only 4 properties out of which some of the instances will show two and some other instances might show all four - you can create all those four properties as static properties in your COM wrapper and have the instances show or hide using the&amp;nbsp;&lt;SPAN&gt;IOPMProopertyExtensionImpl::&lt;/SPAN&gt;&lt;SPAN&gt;ShowProperty method.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;2) Create a dynamic property for each of those four properties and add any of those as a property to an instance using&amp;nbsp;IPropertySource::GetProperties method. The attached sample project demonstrates this. After you appload the .arx, draw two lines. A line that is horizontal and another at an angle. The dynamic properties of these lines differ.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Balaji&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2015 10:51:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5733298#M11026</guid>
      <dc:creator>Balaji_Ram</dc:creator>
      <dc:date>2015-07-22T10:51:58Z</dc:date>
    </item>
    <item>
      <title>Re: Property palette and custom entities</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5733335#M11027</link>
      <description>&lt;P&gt;Thanks very much Balaji.&lt;/P&gt;&lt;P&gt;I suppose this example is what I am looking for. I will give it a try.&lt;/P&gt;&lt;P&gt;Do you have the interface IPropertySource exposed to .NET as &lt;SPAN&gt;Kean Walmsley exposed the IDynamicProperties?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If that's available I think I can achieve this through.NET by following Kean's posts and the exposed IPropertySource.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks again for this excellent sample.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;By the way will this cause any performance issues?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Ram.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2015 11:32:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5733335#M11027</guid>
      <dc:creator>cadsindiaadn</dc:creator>
      <dc:date>2015-07-22T11:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: Property palette and custom entities</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5733353#M11028</link>
      <description>&lt;P&gt;I am not aware of a way to get the first approach working using the .Net API.&lt;/P&gt;
&lt;P&gt;It is quite easy to do that using the C++ COM Wrapper.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="line-height: 15px;"&gt;You may need to give it a try to find out about the performance in your application.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would use the static properties and show/hide them as that is simple approach to code as compared to adding dynamic properties.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Balaji&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2015 11:49:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5733353#M11028</guid>
      <dc:creator>Balaji_Ram</dc:creator>
      <dc:date>2015-07-22T11:49:57Z</dc:date>
    </item>
    <item>
      <title>Re: Property palette and custom entities</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5741929#M11029</link>
      <description>&lt;P&gt;Hi Balaji,&lt;/P&gt;&lt;P&gt;I was able to expose the IPropertySource to C#.NET and was able to display the properties of my custom entity in the property palette using this mechanism.&lt;/P&gt;&lt;P&gt;One thing I got stuck at is the name of the custom entity is not displayed in the property palette. I am kinda trying to achieve a mechanism to create custom entities in .NET so that the development time can be saved and programmers can be freed of learning COM.&lt;/P&gt;&lt;P&gt;Is it possible to get the name of my custom entity to be displayed in the property palette without using the static property dispaly mechanism (the COM way) ?&lt;/P&gt;&lt;P&gt;Or is it possible to implement my own AcRxClass and associate it with my custom entity?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ram.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2015 14:28:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/5741929#M11029</guid>
      <dc:creator>cadsindiaadn</dc:creator>
      <dc:date>2015-07-27T14:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: Property palette and custom entities</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/8306344#M11030</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/765444"&gt;@Balaji_Ram&lt;/a&gt;, thank you for the sample.&lt;/P&gt;&lt;P&gt;I'm using AutoCAD 2018 and for all the custom entities i tried (polysamp sample, square sample, in addition to the line project you attached), i cannot see the properties in the properties panel. It shows no selection always:&lt;/P&gt;&lt;P&gt;Any ideas why this might be occurring?&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="No Selection in Properties Panel.PNG" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/552755i635FCB9AB244D314/image-size/large?v=v2&amp;amp;px=999" role="button" title="No Selection in Properties Panel.PNG" alt="No Selection in Properties Panel.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 06:25:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/8306344#M11030</guid>
      <dc:creator>jwe03</dc:creator>
      <dc:date>2018-10-02T06:25:41Z</dc:date>
    </item>
    <item>
      <title>Re: Property palette and custom entities</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/8306555#M11031</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5439984"&gt;@jwe03&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;Try those samples with admin rights. Without admin rights there is no self-registration of COM-wrappers.&lt;/P&gt;
&lt;P&gt;Also you can create new user with admin rights and test with this user.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 08:34:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/8306555#M11031</guid>
      <dc:creator>Alexander.Rivilis</dc:creator>
      <dc:date>2018-10-02T08:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: Property palette and custom entities</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/8306560#M11032</link>
      <description>&lt;P&gt;done ! finally i can see them&amp;nbsp;&lt;BR /&gt;Thank you !&lt;/P&gt;</description>
      <pubDate>Tue, 02 Oct 2018 08:38:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/8306560#M11032</guid>
      <dc:creator>jwe03</dc:creator>
      <dc:date>2018-10-02T08:38:03Z</dc:date>
    </item>
    <item>
      <title>Re: Property palette and custom entities</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/8546289#M11033</link>
      <description>&lt;P style="margin: 0px; text-align: left; color: rgb(102, 102, 102); text-transform: none; line-height: 23.99px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; white-space: normal; box-sizing: border-box; orphans: 2; background-color: transparent; -webkit-text-stroke-width: 0px;"&gt;Hi,&lt;/P&gt;
&lt;P style="margin: 0px; text-align: left; color: rgb(102, 102, 102); text-transform: none; line-height: 23.99px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; white-space: normal; box-sizing: border-box; orphans: 2; background-color: transparent; -webkit-text-stroke-width: 0px;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0px; text-align: left; color: rgb(102, 102, 102); text-transform: none; line-height: 23.99px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; white-space: normal; box-sizing: border-box; orphans: 2; background-color: transparent; -webkit-text-stroke-width: 0px;"&gt;I need to add spin control in ACAD property pallet. My property type is dynamic.&lt;/P&gt;
&lt;P style="margin: 0px; text-align: left; color: rgb(102, 102, 102); text-transform: none; line-height: 23.99px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; white-space: normal; box-sizing: border-box; orphans: 2; background-color: transparent; -webkit-text-stroke-width: 0px;"&gt;I tried with below link code information.&lt;/P&gt;
&lt;P style="margin: 0px; text-align: left; color: rgb(102, 102, 102); text-transform: none; line-height: 23.99px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; white-space: normal; box-sizing: border-box; orphans: 2; background-color: transparent; -webkit-text-stroke-width: 0px;"&gt;&lt;A style="color: rgb(6, 150, 215); text-decoration: underline; box-sizing: border-box; background-color: transparent;" href="https://forums.autodesk.com/t5/objectarx/how-to-add-spin-control-in-acad-property-pallet-for-custom/m-p/How%20to%20create%20a%20polyline-like%20vertex%20edit%20with%20a%20spin%20control%20in%20OPM?" target="_blank" rel="nofollow noopener noreferrer"&gt;https://adndevblog.typepad.com/autocad/2012/12/how-to-create-a-polyline-like-vertex-edit-with-a-spin...&lt;/A&gt;&lt;/P&gt;
&lt;P style="margin: 0px; text-align: left; color: rgb(102, 102, 102); text-transform: none; line-height: 23.99px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; white-space: normal; box-sizing: border-box; orphans: 2; background-color: transparent; -webkit-text-stroke-width: 0px;"&gt;The Get element strings&amp;nbsp;function does not invoke by system.&lt;/P&gt;
&lt;P style="margin: 0px; text-align: left; color: rgb(102, 102, 102); text-transform: none; line-height: 23.99px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; white-space: normal; box-sizing: border-box; orphans: 2; background-color: transparent; -webkit-text-stroke-width: 0px;"&gt;Please let me know to resolve this issue.&lt;/P&gt;
&lt;P style="margin: 0px; text-align: left; color: rgb(102, 102, 102); text-transform: none; line-height: 23.99px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; white-space: normal; box-sizing: border-box; orphans: 2; background-color: transparent; -webkit-text-stroke-width: 0px;"&gt;Can any one upload sample project? It may useful to understand it.&lt;/P&gt;
&lt;P style="margin: 0px; text-align: left; color: rgb(102, 102, 102); text-transform: none; line-height: 23.99px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; white-space: normal; box-sizing: border-box; orphans: 2; background-color: transparent; -webkit-text-stroke-width: 0px;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0px; text-align: left; color: rgb(102, 102, 102); text-transform: none; line-height: 23.99px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; white-space: normal; box-sizing: border-box; orphans: 2; background-color: transparent; -webkit-text-stroke-width: 0px;"&gt;&lt;STRONG style="font-weight: bold; box-sizing: border-box;"&gt;Thanks &amp;amp; Regards,&lt;/STRONG&gt;&lt;/P&gt;
&lt;P style="margin: 0px; text-align: left; color: rgb(102, 102, 102); text-transform: none; line-height: 23.99px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; white-space: normal; box-sizing: border-box; orphans: 2; background-color: transparent; -webkit-text-stroke-width: 0px;"&gt;&lt;STRONG style="font-weight: bold; box-sizing: border-box;"&gt;Jayaprakash &lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jan 2019 13:47:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/8546289#M11033</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-24T13:47:05Z</dc:date>
    </item>
    <item>
      <title>Re: Property palette and custom entities</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/8546312#M11034</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P style="margin: 0px; text-align: left; color: #666666; text-transform: none; line-height: 23.99px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; white-space: normal; box-sizing: border-box; orphans: 2; background-color: transparent; -webkit-text-stroke-width: 0px;"&gt;Hi,&lt;/P&gt;
&lt;P style="margin: 0px; text-align: left; color: #666666; text-transform: none; line-height: 23.99px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; white-space: normal; box-sizing: border-box; orphans: 2; background-color: transparent; -webkit-text-stroke-width: 0px;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0px; text-align: left; color: #666666; text-transform: none; line-height: 23.99px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; white-space: normal; box-sizing: border-box; orphans: 2; background-color: transparent; -webkit-text-stroke-width: 0px;"&gt;I need to add spin control in ACAD property pallet. My property type is dynamic.&lt;/P&gt;
&lt;P style="margin: 0px; text-align: left; color: #666666; text-transform: none; line-height: 23.99px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; white-space: normal; box-sizing: border-box; orphans: 2; background-color: transparent; -webkit-text-stroke-width: 0px;"&gt;I tried with below link code information.&lt;/P&gt;
&lt;P style="margin: 0px; text-align: left; color: #666666; text-transform: none; line-height: 23.99px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; white-space: normal; box-sizing: border-box; orphans: 2; background-color: transparent; -webkit-text-stroke-width: 0px;"&gt;&lt;A style="color: #0696d7; text-decoration: underline; box-sizing: border-box; background-color: transparent;" href="https://forums.autodesk.com/t5/objectarx/how-to-add-spin-control-in-acad-property-pallet-for-custom/m-p/How%20to%20create%20a%20polyline-like%20vertex%20edit%20with%20a%20spin%20control%20in%20OPM?" target="_blank" rel="nofollow noopener noreferrer"&gt;https://adndevblog.typepad.com/autocad/2012/12/how-to-create-a-polyline-like-vertex-edit-with-a-spin...&lt;/A&gt;&lt;/P&gt;
&lt;P style="margin: 0px; text-align: left; color: #666666; text-transform: none; line-height: 23.99px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; white-space: normal; box-sizing: border-box; orphans: 2; background-color: transparent; -webkit-text-stroke-width: 0px;"&gt;The Get element strings&amp;nbsp;function does not invoke by system.&lt;/P&gt;
&lt;P style="margin: 0px; text-align: left; color: #666666; text-transform: none; line-height: 23.99px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; white-space: normal; box-sizing: border-box; orphans: 2; background-color: transparent; -webkit-text-stroke-width: 0px;"&gt;Please let me know to resolve this issue.&lt;/P&gt;
&lt;P style="margin: 0px; text-align: left; color: #666666; text-transform: none; line-height: 23.99px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; white-space: normal; box-sizing: border-box; orphans: 2; background-color: transparent; -webkit-text-stroke-width: 0px;"&gt;Can any one upload sample project? It may useful to understand it.&lt;/P&gt;
&lt;P style="margin: 0px; text-align: left; color: #666666; text-transform: none; line-height: 23.99px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; white-space: normal; box-sizing: border-box; orphans: 2; background-color: transparent; -webkit-text-stroke-width: 0px;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0px; text-align: left; color: #666666; text-transform: none; line-height: 23.99px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; white-space: normal; box-sizing: border-box; orphans: 2; background-color: transparent; -webkit-text-stroke-width: 0px;"&gt;&lt;STRONG style="font-weight: bold; box-sizing: border-box;"&gt;Thanks &amp;amp; Regards,&lt;/STRONG&gt;&lt;/P&gt;
&lt;P style="margin: 0px; text-align: left; color: #666666; text-transform: none; line-height: 23.99px; text-indent: 0px; letter-spacing: normal; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; white-space: normal; box-sizing: border-box; orphans: 2; background-color: transparent; -webkit-text-stroke-width: 0px;"&gt;&lt;STRONG style="font-weight: bold; box-sizing: border-box;"&gt;Jayaprakash &lt;/STRONG&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;First of all please do not post one question to different topics. It does not help in solving your problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jan 2019 13:51:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/8546312#M11034</guid>
      <dc:creator>Alexander.Rivilis</dc:creator>
      <dc:date>2019-01-24T13:51:21Z</dc:date>
    </item>
    <item>
      <title>Re: Property palette and custom entities</title>
      <link>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/8546341#M11035</link>
      <description>&lt;P&gt;Sorry! I posted my question separately.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/objectarx/how-to-add-spin-control-in-acad-property-pallet-for-custom/m-p/8540151#M38197" target="_blank"&gt;https://forums.autodesk.com/t5/objectarx/how-to-add-spin-control-in-acad-property-pallet-for-custom/m-p/8540151#M38197&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jan 2019 13:58:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/objectarx-forum/property-palette-and-custom-entities/m-p/8546341#M11035</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-24T13:58:20Z</dc:date>
    </item>
  </channel>
</rss>

