ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
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)