mirror of https://github.com/apache/poi.git
Make the orders match the names, as otherwise people get confused (bug #49381 for example)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@951453 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
40b7db249f
commit
bfc8f9c426
|
@ -1365,8 +1365,8 @@ public final class HSSFSheet implements org.apache.poi.ss.usermodel.Sheet {
|
|||
* Creates a split (freezepane). Any existing freezepane or split pane is overwritten.
|
||||
* @param colSplit Horizonatal position of split.
|
||||
* @param rowSplit Vertical position of split.
|
||||
* @param topRow Top row visible in bottom pane
|
||||
* @param leftmostColumn Left column visible in right pane.
|
||||
* @param topRow Top row visible in bottom pane
|
||||
*/
|
||||
public void createFreezePane(int colSplit, int rowSplit, int leftmostColumn, int topRow) {
|
||||
validateColumn(colSplit);
|
||||
|
|
|
@ -535,8 +535,8 @@ public interface Sheet extends Iterable<Row> {
|
|||
* Creates a split (freezepane). Any existing freezepane or split pane is overwritten.
|
||||
* @param colSplit Horizonatal position of split.
|
||||
* @param rowSplit Vertical position of split.
|
||||
* @param topRow Top row visible in bottom pane
|
||||
* @param leftmostColumn Left column visible in right pane.
|
||||
* @param topRow Top row visible in bottom pane
|
||||
*/
|
||||
void createFreezePane(int colSplit, int rowSplit, int leftmostColumn, int topRow);
|
||||
|
||||
|
|
Loading…
Reference in New Issue