FileDocCategorySizeDatePackage
AreaAPtg.javaAPI DocApache Poi 3.0.12366Mon Jan 01 12:39:40 GMT 2007org.apache.poi.hssf.record.formula

AreaAPtg

public class AreaAPtg extends AreaPtg
Specifies a rectangular area of cells A1:A4 for instance.
author
Jason Height (jheight at chariot dot net dot au)

Fields Summary
public static final short
sid
Constructors Summary
protected AreaAPtg()


      
      //Required for clone methods
    
public AreaAPtg(short firstRow, short lastRow, short firstColumn, short lastColumn, boolean firstRowRelative, boolean lastRowRelative, boolean firstColRelative, boolean lastColRelative)

      super(firstRow, lastRow, firstColumn, lastColumn, firstRowRelative, lastRowRelative, firstColRelative, lastColRelative);
    
public AreaAPtg(RecordInputStream in)

      super(in);
    
Methods Summary
public java.lang.Objectclone()

      AreaAPtg ptg = new AreaAPtg();
      ptg.setFirstRow(getFirstRow());
      ptg.setLastRow(getLastRow());
      ptg.setFirstColumnRaw(getFirstColumnRaw());
      ptg.setLastColumnRaw(getLastColumnRaw());
      ptg.setClass(ptgClass);
      return ptg;
    
public java.lang.StringgetAreaPtgName()

      return "AreaAPtg";