Open
Opens a new matrix from the supplied OGM file and attaches it to the object.
BOOL Open( LPCSTR lpcszFileName, int nOption = CREATE_VISIBLE )
TRUE for success; otherwise FALSE.
EX1
//Opens a new matrix from the supplied OGM file and attaches it to the object. void MatrixLayer_Open_Ex1() { MatrixLayer mat; string strOGM = GetOpenBox("*.ogm"); int nOption = CREATE_VISIBLE_SAME; BOOL bRet = mat.Open(strOGM, nOption); out_int("bRet = ", bRet); }
origin.h