Get a binary storage from a page into a string.
bool page_get_storage_str( Page & pg, LPCSTR lpcszName, string & strValue )
If success then true else false
EX1
//Run the example code in page_set_storage_str before this code as to check the result. void Run_page_get_storage_str() { Page pg("Book1"); string strName = "var"; string strVal; bool bRet = page_get_storage_str(pg,strName,strVal); out_str(strVal); }
page_set_storage_str
origin.h