Skip to content

Grid questions #231

Closed
Closed
@dguendisch

Description

@dguendisch

I have a hard time understanding Grid's meaning of width and height. Either the code documentation is mixing them up a lot (not likely) or I have a different understanding than tview about them (more likely).
Let's take e.g. the doc of its AddItem(p Primitive, row int, column int, height int, width int, ...) method:

The top-left corner of the primitive will be located in the top-left corner of the grid cell at the given row and column and will span "width" rows and "height" columns.

How can something span a width of rows?? I mean the wider an item gets, the more columns it spans.
The same for "... span ... height columns": the higher an item gets, the more rows it will span.

Later:

For example, for a primitive to occupy rows 2, 3, and 4 and columns 5 and 6:
grid.AddItem(p, 2, 4, 3, 2, true)

Ok, so we add p at row=2 with a height=3, so it'll span row 2, 3 and 4 => I understand that one, it matches my understanding of width and height :)
But we define col=4 and width=2, so it should span columns 4 and 5 instead of what's written in the documentation.

The same goes on with SetRows(...)...

But I guess I got something totally wrong with the Grid, so any explanation is appreciated :)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions