Guest User

Untitled

a guest
May 24th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.31 KB | None | 0 0
  1.  stCols ={
  2.         {name="", width=.1},
  3.         {name="Group Name", width=.9},
  4.         }
  5.  
  6.     local function GetSTColInfo(width)
  7.         local colInfo =CopyTable(stCols)
  8.         for i=1, #colInfo do
  9.                 colInfo[i].width = floor(colInfo[i].width*width)
  10.         end
  11.         return colInfo
  12.     end
Add Comment
Please, Sign In to add comment