2.2.4.13.7 Folder::GetComments


Description

Get the comments of specified folder

Syntax

string GetComments( )

Parameters

Return

return the comments of folder

Examples

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");
}

Remark

See Also

OriginC:Folder::SetComments

Header to Included

origin.h