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.ObjectA 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 intendIndexindex of last item in rangeintheightheight in pixels of this range (including horizontal separator between rows)introwsnumber of rows (i.e.intstartIndexindex of first item in range
-
Constructor Summary
Constructors Modifier Constructor Description privateRowRange()
-
-
-
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)
-
-