MCPcopy Create free account
hub / github.com/cinience/RedisStudio / SetSubControlText

Method SetSubControlText

DuiLib/Core/UIContainer.cpp:809–820  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

807 }
808
809 bool CContainerUI::SetSubControlText( LPCTSTR pstrSubControlName,LPCTSTR pstrText )
810 {
811 CControlUI* pSubControl=NULL;
812 pSubControl=this->FindSubControl(pstrSubControlName);
813 if (pSubControl!=NULL)
814 {
815 pSubControl->SetText(pstrText);
816 return TRUE;
817 }
818 else
819 return FALSE;
820 }
821
822 bool CContainerUI::SetSubControlFixedHeight( LPCTSTR pstrSubControlName,int cy )
823 {

Callers

nothing calls this directly

Calls 2

FindSubControlMethod · 0.95
SetTextMethod · 0.45

Tested by

no test coverage detected