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

RefVPtg

public class RefVPtg extends ReferencePtg
RefVPtg
author
Jason Height (jheight at chariot dot net dot au)

Fields Summary
public static final byte
sid
Constructors Summary
protected RefVPtg()


    
    super();
  
public RefVPtg(short row, short column, boolean isRowRelative, boolean isColumnRelative)

    super(row, column, isRowRelative, isColumnRelative);
  
public RefVPtg(RecordInputStream in)
Creates new ValueReferencePtg

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

    RefVPtg ptg = new RefVPtg();
    ptg.setRow(getRow());
    ptg.setColumnRaw(getColumnRaw());
    ptg.setClass(ptgClass);
    return ptg;
  
public java.lang.StringgetRefPtgName()

    return "RefVPtg";