Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions docs/api/layout.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,3 +114,31 @@ Alias for `Grid.portrait?`.
## `landscape?`

Alias for `Grid.landscape?`.

## `row_count`

Gives the number of rows in the Layout grid.
In landscape mode the value is set to `12`
In portrait mode the value is set to `24`

!> This property is read-only.

## `row_max_index`

Returns the maximum row count index.

!> This property is read-only

## `col_count`

Gives the number of columns in the Layout grid.
In landscape mode the value is set to `24`
In portrait mode the value is set to `12`

!> This property is read-only

## `col_max_index`

Returns the maximum column count index.

!> This property is read-only