得到了所选文本的句柄,如何把它赋给对象指针?
<p>我创建了右键实体菜单,当选中一个文本时,点击右键会弹出对应的右键菜单.这时会在</p><p>void *CPDMTextMenu:: getMenuContext(const AcRxClass *pClass, const AcDbObjectIdArray &ids)<br/>{<br/> if (pClass != AcDbText::desc()) return NULL;<br/> m_Text = AcDbText::cast(pClass);<br/> m_tempHMenu = m_pMenu->GetSubMenu(0)->GetSafeHmenu();<br/> return &m_tempHMenu;<br/>}<br/>//pClass就是所选实体的句柄,我不懂第二个参数是什么意思?</p><p>我在自定义类CPDMTextMenu里定义了一个私有的AcDbText *m_Text.</p><p>想把pClass所指的句柄赋给m_Text,但总是不成功,m_Text总是空值,<br/>希望高手指点................</p><p>谢谢!!!!!!!!!!!!!!!!</p>
页:
[1]