2.2.4.42.11 storage::Text

ClassName

storage

AccessType

public

Name

Text

Declaration

string Text

Remark

Examples

EX1

void run_Text()
{    
    Page pg = Project.Pages();
    if(pg==NULL)
        return;
    
    storage st;    
    string strStorage = "Test";    
    st = pg.GetStorage(strStorage);    
    
    if(st.IsValid())
    {
        string strText = st.Text;
        out_str(strText);
    }    
}

Description

Header to Include

origin.h

See Also

Reference