SMART datagrid v.1 > Reporting > Classes > PrintItem

Back  Forward

DLReport.PrintItem.row  property

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

The horizontal (column) location is specified as col

Defaults to 0.

Getter
function row(): Integer
Setter
function setRow(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
col
rowSpan
colSpan
PrintTile
Examples
Quotation Sample