SMART datagrid v.1 > Reporting > Classes

Back  Forward

DLReport.PrintHLineItem  class

The item which displays the horizontal line. 

When add it as setting object, "type" will be "hline". It can be used to display the separating line in the middle of List Item, etc. The vertical line is printed as PrintVLineItem

Base Classes
PrintLineItem > PrintItem > DLBase
Inherited Properties
PrintItem.bottom
PrintItem.col
PrintItem.colSpan
PrintItem.data
PrintItem.footer
PrintItem.footerCollapsible
PrintItem.header
PrintItem.headerCollapsible
PrintItem.height
PrintItem.id
PrintItem.index
PrintItem.left
PrintItem.maxHeight
PrintItem.maxWidth
PrintItem.minHeight
PrintItem.minWidth
PrintItem.right
PrintItem.row
PrintItem.rowSpan
PrintItem.styleName
PrintItem.styles
PrintItem.top
PrintItem.width
PrintItem.zindex
Inherited Methods
DLBase.assign
DLBase.getProperties
DLBase.getProperty
DLBase.setProperties
DLBase.setProperty
DLBase.toggle

 

Code -1
    var report = {
        reportHeader: {
            items: [{
                type: "list",
                items: [{
                    text: "Item1"
                }, {
                    text: "Item2"
                }, {
                    type: "hline"
                }, {
                    text: "Item3"
                }]
            }]
        }
    };
See Also
PrinVLineItem
Examples
Hello Report