FileDocCategorySizeDatePackage
Section.javaAPI DocApache Poi 3.0.11598Mon Jan 01 18:55:30 GMT 2007org.apache.poi.hwpf.usermodel

Section

public class Section extends Range

Fields Summary
private SectionProperties
_props
Constructors Summary
public Section(SEPX sepx, Range parent)

    super(Math.max(parent._start, sepx.getStart()), Math.min(parent._end, sepx.getEnd()), parent);
    _props = sepx.getSectionProperties();
  
Methods Summary
public java.lang.Objectclone()

     Section s = (Section)super.clone();
     s._props = (SectionProperties)_props.clone();
     return s;
   
public intgetNumColumns()

    return _props.getCcolM1() + 1;
  
public inttype()

    return TYPE_SECTION;