| java.lang.Object org.apache.poi.hssf.util.PaneInformation
PaneInformation | public class PaneInformation (Code) | | Holds information regarding a split plane or freeze plane for a sheet.
|
Constructor Summary | |
public | PaneInformation(short x, short y, short top, short left, byte active, boolean frozen) |
PANE_LOWER_LEFT | final public static byte PANE_LOWER_LEFT(Code) | | Constant for active pane being the lower left
|
PANE_LOWER_RIGHT | final public static byte PANE_LOWER_RIGHT(Code) | | Constant for active pane being the lower right
|
PANE_UPPER_LEFT | final public static byte PANE_UPPER_LEFT(Code) | | Constant for active pane being the upper left
|
PANE_UPPER_RIGHT | final public static byte PANE_UPPER_RIGHT(Code) | | Constant for active pane being the upper right
|
PaneInformation | public PaneInformation(short x, short y, short top, short left, byte active, boolean frozen)(Code) | | |
getHorizontalSplitPosition | public short getHorizontalSplitPosition()(Code) | | Returns the horizontal position of the split.
0 if there is no horizontal spilt,or for a freeze pane the number of rows in the LEFT pane,or for a split plane the position of the split in 1/20th of a point. |
getHorizontalSplitTopRow | public short getHorizontalSplitTopRow()(Code) | | For a horizontal split returns the top row in the BOTTOM pane.
0 if there is no horizontal split, or the top row of the bottom pane. |
getVerticalSplitLeftColumn | public short getVerticalSplitLeftColumn()(Code) | | For a vertical split returns the left column in the RIGHT pane.
0 if there is no vertical split, or the left column in the RIGHT pane. |
getVerticalSplitPosition | public short getVerticalSplitPosition()(Code) | | Returns the vertical position of the split.
0 if there is no vertical spilt,or for a freeze pane the number of columns in the TOP pane,or for a split plane the position of the split in 1/20th of a point. |
isFreezePane | public boolean isFreezePane()(Code) | | Returns true if this is a Freeze pane, false if it is a split pane.
|
|
|