For example:
Grid[{{10!}, {5!}}, ItemSize -> Full, Frame -> All]
What's the real value of Full?
How can I map the Full to a 2-d array? {{1, 2, 3, 4, 5 ... }, {1, 2, 3, 4, 5 ... }}
Similarly there are some other values like {Scaled[.3]}, Automatic, If I can get the absolute values, then I can map them to the corresponding values in HTML files for example, weight height. Sometimes after rasterizing something to pictures, we can get the dimensions of the images. The tricky here is after exporting Grid content to HTML files(render as text), the ItemSize information is lost?
One background:
my old question about ItemSize output in HTML files (Is there any other easy ways?)
I've wrote one mapping function, This is the effect web page, however I cannot find the NB files after one time I re-installed OS...
so...I need re-think the problem.
allow every item its full width and height. So it depends on the item. i.e. it is computed during rendering, isn't? Only then the item size if fully known. What is it exactly you are trying to do? – Nasser Aug 29 '13 at 09:03{Scaled[.3]}, Automatic, If I can get the absolute values, then I can map them to the corresponding values in HTML files for example, weight height. – HyperGroups Aug 29 '13 at 09:10Rasterize[10!, "RasterSize"]-- is this of any use to you? – Mr.Wizard Aug 29 '13 at 09:27Rasterize? hmm? I'm trying render the Grid as text as one text table. – HyperGroups Aug 29 '13 at 09:29Rasterizebreaks lines, tryRasterize[100!, "RasterSize"]and forFullitem size there is no break. AlsoItemSizehas different units – Kuba Aug 29 '13 at 09:30