SMART datagrid v1.4 > Reporting > Classes > PrintItem

Back  Forward

DLReport.PrintItem.col  property

Tile에 포함될 때 아이템이 표시되는 셀의 수평(컬럼) 위치. 

수직(행) 위치는 row로 지정한다. 

기본값은 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
견적서 Sample