lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


>> What is the best way to represent cell values (eg. A1, B5) 
....
> These other values can either be stored directly in the 
> environment, or the environment can have a metatable with 
> __index and __newindex metamethods. 

  In app, there will be GetCellValue() fuction. I'll try to pre-parse
  string to extract used cells, and then set lua enviroment with 
  values. 
 
  That sounds just like what I was looking for.   

  Thank you Aaron.