How to display sub-entity's properties in Property Palette?

How to display sub-entity's properties in Property Palette?

Anonymous
Not applicable
972 Views
4 Replies
Message 1 of 5

How to display sub-entity's properties in Property Palette?

Anonymous
Not applicable

How to display sub-entity's properties in Property Palette? I had tryed to run SubEntity sample in autocad2007/8/9,but Property Palette can't display the properties of the sub-entity selected.

Thanks a lot!

0 Likes
Accepted solutions (1)
973 Views
4 Replies
Replies (4)
Message 2 of 5

Balaji_Ram
Alumni
Alumni

Sorry, This is a known issue.

To my understanding, the sample was not fixed.



Balaji
Developer Technical Services
Autodesk Developer Network

0 Likes
Message 3 of 5

Anonymous
Not applicable

Thanks for you reply.

Can you tell me the other method to display sub-entity's properties in Property Palette?

0 Likes
Message 4 of 5

Balaji_Ram
Alumni
Alumni
Accepted solution

Hi,

 

Sorry for the delay.

I was searching for a fixed version of that sample and finally found it. Thanks to my colleague Gopinath Taget who got this sample working with help from the engineering team.

 

Here are the changes and the sample project :

 

<<<<

The key is to inherit from IAcadSubEntity in the IDL file for your interface:

 

interface ICrank : IAcadSubEntity

 

And in the implementation header, Inherit from the IAcadBaseSubEntityImpl and IOPMPropertyExtensionImpl templates like this:

 

//----- CCrank

class ATL_NO_VTABLE CCrank :

public CComObjectRootEx<CComSingleThreadModel>,

public CComCoClass<CCrank, &CLSID_Crank>,

public ISupportErrorInfo,

public IAcadBaseSubEntityImpl<CCrank, &CLSID_Crank, ICrank, &IID_ICrank, &LIBID_AsdkSliderCrankDbLib>,

public IOPMPropertyExtensionImpl<CCrank>

 

Also make sure that the inherted templates are properly mapped like this:

 

BEGIN_COM_MAP(CCrank)

COM_INTERFACE_ENTRY(ICrank)

COM_INTERFACE_ENTRY(IDispatch)

COM_INTERFACE_ENTRY(ISupportErrorInfo)

COM_INTERFACE_ENTRY(IConnectionPointContainer)

COM_INTERFACE_ENTRY(IRetrieveApplication)

COM_INTERFACE_ENTRY(IAcadSubEntity)

COM_INTERFACE_ENTRY(IAcadBaseSubEntity)

COM_INTERFACE_ENTRY(IOPMPropertyExtension)

END_COM_MAP()

 

Finally, implement the GetResourceInstance and GetDisplayName methods of the IOpmPropertyExtension/IOpmPropertyExtensionImpl interfaces like this:

 

virtual HINSTANCE GetResourceInstance()

{

HINSTANCE hi = _AtlBaseModule.GetResourceInstance();

HINSTANCE dllHi = _hdllInstance;

return hi;

}

 

STDMETHODIMP GetDisplayName(

DISPID dispID,

BSTR *pBstr)

{

if (dispID == 0x401) { // magic dispID meaning object itself

if (pBstr==NULL)

return E_POINTER;

*pBstr = ::SysAllocString(L"TheCrank");

return S_OK;

}

return IOPMPropertyExtensionImpl<CCrank>::GetDisplayName(

dispID, pBstr);

}

 

The proper implementation of GetDisplayName method is vital for the subentity OPM to work.

 

I am attaching the sample with these modifications to the Crank subentity. Similar modifications need to be made to the other sub entities as well.

>>>>

 

 

 

 

 



Balaji
Developer Technical Services
Autodesk Developer Network

0 Likes
Message 5 of 5

Anonymous
Not applicable

Your code has resolved my question.

Thanks a lot.

 

0 Likes