12.11. The OpenCReport\Row class #

12.11.1. Get the next part row
12.11.2. Create a new part column for the row
12.11.3. Get first column of a part row
12.11.4. Set or get suppression for the part row
12.11.5. Set or get new page for the part row
12.11.6. Set or get layout type for the part row

class OpenCReport\Row {
    public final get_next():
                     ?OpenCReport\Row;

    public final column_new():
                     OpenCReport\Column;

    public final column_get_first():
                     ?OpenCReport\Column;

    public final set_suppress(
                     ?string $expr_string = null):
                     ?OpenCReport\Expr;

    public final get_suppress():
                     ?OpenCReport\Expr;

    public final set_newpage(
                     ?string $expr_string = null):
                     ?OpenCReport\Expr;

    public final get_newpage():
                     ?OpenCReport\Expr;

    public final set_layout(
                     ?string $expr_string = null):
                     ?OpenCReport\Expr;

    public final set_layout():
                     ?OpenCReport\Expr;
}

12.11.1. Get the next part row #

Get the next object in the chain of part rows. This method may only be used on an object created with OpenCReport\Part::row_get_first(), i.e. one that was internally marked as an iterator object.

public final
OpenCReport\Row::get_next():
                     ?OpenCReport\Row;

12.11.2. Create a new part column for the row #

For class methods of OpenCReport\Column, see Section 12.12.

public final
OpenCReport\Row::column_new():
                     OpenCReport\Column;

12.11.3. Get first column of a part row #

Get the first column from the part row. The object is marked internally as an iterator. For class methods of OpenCReport\Column, see Section 12.12

public final
OpenCReport\Row::column_get_first():
                     ?OpenCReport\Column;

12.11.4. Set or get suppression for the part row #

public final
OpenCReport\Row:set_suppress(
                     ?string $expr_string = null):
                     ?OpenCReport\Expr;

public final
OpenCReport\Row:get_suppress():
                     ?OpenCReport\Expr;

12.11.5. Set or get new page for the part row #

When set to yes, the part row will start on a new page.

public final
OpenCReport\Row:set_newpage(
                     ?string $expr_string = null):
                     ?OpenCReport\Expr;

public final
OpenCReport\Row:get_newpage():
                     ?OpenCReport\Expr;

12.11.6. Set or get layout type for the part row #

public final
OpenCReport\Row::set_layout(
                     ?string $expr_string = null):
                     ?OpenCReport\Expr;

public final
OpenCReport\Row::set_layout():
                     ?OpenCReport\Expr;