| 859 | } |
| 860 | |
| 861 | DuiLib::CDuiString CContainerUI::GetSubControlText( LPCTSTR pstrSubControlName ) |
| 862 | { |
| 863 | CControlUI* pSubControl=NULL; |
| 864 | pSubControl=this->FindSubControl(pstrSubControlName); |
| 865 | if (pSubControl==NULL) |
| 866 | return _T(""); |
| 867 | else |
| 868 | return pSubControl->GetText(); |
| 869 | } |
| 870 | |
| 871 | int CContainerUI::GetSubControlFixedHeight( LPCTSTR pstrSubControlName ) |
| 872 | { |
nothing calls this directly
no test coverage detected