Package org.eclipse.nebula.widgets.grid
Class Grid.RowRange
- java.lang.Object
-
- org.eclipse.nebula.widgets.grid.Grid.RowRange
-
- Enclosing class:
- Grid
private static class Grid.RowRange extends java.lang.Object
A range of rows in aGrid
.A row in this sense exists only for visible items (i.e. items with
GridItem.isVisible()
== true). Therefore, the items at 'startIndex' and 'endIndex' are always visible.
-
-
Field Summary
Fields Modifier and Type Field Description int
endIndex
index of last item in rangeint
height
height in pixels of this range (including horizontal separator between rows)int
rows
number of rows (i.e.int
startIndex
index of first item in range
-
Constructor Summary
Constructors Modifier Constructor Description private
RowRange()
-
-
-
Field Detail
-
startIndex
public int startIndex
index of first item in range
-
endIndex
public int endIndex
index of last item in range
-
rows
public int rows
number of rows (i.e. visible items) in this range
-
height
public int height
height in pixels of this range (including horizontal separator between rows)
-
-