SMART datagrid v.1 > Reporting > Classes > PrintItem

Back  Forward

DLReport.PrintItem.col  property

The horizontal (column) location of the cell in which is displayed the item when it is contained in Tile

The vertical (row) location is specified as row

Defaults to 0.

Getter
function col(): Integer
Setter
function setCol(value: Integer)
Code -1
    var tile = {
        type: "tile",
        cols: 5,
        rows: 5,
        items: [{
            col: 0,
            row: 0,
            text: "Cell 0-0"
        }, {
            col: 1,
            row: 0,
            text: "Cell 0-1"
        }]
    };
See Also
row
colSpan
rowSpan
PrintTile
Examples
Quotation Sample