Get the comments of specified folder
string GetComments( )
return the comments of folder
EX1
void GetComments_Ex1() { Folder fld = Project.ActiveFolder(); if(fld.IsValid()) { string strComm; strComm=fld.GetComments(); printf("the comment of this folder is :%s",strComm); return; } printf("there is no active folder in current project"); }
OriginC:Folder::SetComments
origin.h