Package com.itextpdf.layout.renderer
Class GridView.Pos
- java.lang.Object
-
- com.itextpdf.layout.renderer.GridView.Pos
-
- Direct Known Subclasses:
GridView.Cursor
- Enclosing class:
- GridView
static class GridView.Pos extends java.lang.Object
Represents position on a grid.
-
-
Constructor Summary
Constructors Constructor Description Pos(int y, int x)
Creates a position from two integers.Pos(GridView.Pos other)
Creates a position from other position instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getX()
int
getY()
-
-
-
Constructor Detail
-
Pos
public Pos(int y, int x)
Creates a position from two integers.- Parameters:
y
- row index.x
- column index.
-
Pos
public Pos(GridView.Pos other)
Creates a position from other position instance.- Parameters:
other
- other position
-
-