Set a string into a page as a binary storage
bool page_set_storage_str( Page & pg, LPCSTR lpcszName, LPCSTR lpcstrValue )
If success then true else false
EX1
void Run_page_set_storage_str() { Page pg("Book1"); string strName = "var"; string strVal = "Testing"; bool bRet = page_set_storage_str(pg,strName,strVal); }
page_get_storage_str
origin.h