ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
OrderingRow.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
25
26interface OrderingRow extends DataRow
27{
28 public function withPosition(int $position_index): self;
29
30 public function getPosition(): int;
31}
A Column describes the form of presentation for a certain aspect of data, i.e.
Definition: Column.php:28
withPosition(int $position_index)