SMART datagrid v.1 > Reporting > Classes > PrintItem

Back  Forward

DLReport.PrintItem.rowSpan  property

The number of cells which take more places to the bottom side besides the cell displaying the item when it is contained in Tile

The horizontal number is specified by colSpan

Defaults to 0.

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