| 285 | } |
| 286 | |
| 287 | HPROPERTY GetProperty(int index) const |
| 288 | { |
| 289 | ATLASSERT(::IsWindow(m_hWnd)); |
| 290 | ATLASSERT(index!=-1); |
| 291 | IProperty* prop = reinterpret_cast<IProperty*>(TBase::GetItemData(index)); |
| 292 | if( prop == (IProperty*) -1 ) prop = NULL; |
| 293 | return prop; |
| 294 | } |
| 295 | |
| 296 | HPROPERTY FindProperty(LPCTSTR pstrName) const |
| 297 | { |
nothing calls this directly
no test coverage detected