set comments to folder
BOOL SetComments( LPCSTR lpcszComments )
if set the comments to folder succeed return true,otherwise return false.
EX1
void SetComments_Ex1() { Folder fld = Project.ActiveFolder(); if(fld.IsValid()) { string strComm("Source code folder"); BOOL bSuccess; bSuccess=fld.SetComments(strComm); printf("Is comments has been setted :%s",bSuccess?"yes":"not"); return; } printf("there is no active folder in current project"); }
OriginC:Folder::GetComments
origin.h