0

How to make grid table using alive pdf?

Sthepen
  • 203
  • 2
  • 6
  • 15

1 Answers1

1
var pdf:PDF = new PDF(Orientation.PORTRAIT, Unit.MM, Size.LETTER);

var grid:Grid = new Grid(array, 100 , 100, new RGBColor(0xFFFFFF),
                                           new RGBColor (0x000000), false,
                                           new RGBColor( 0x000000 ));           
pdf.addGrid(grid);
Michael Petrotta
  • 59,888
  • 27
  • 145
  • 179
Ppillo
  • 11
  • 1