See the License for the specific language governing permissions and
limitations under the License.
==================================================================== */
-
+
package org.apache.poi.hwpf.usermodel;
return TYPE_SECTION;
}
+ public int getNumColumns()
+ {
+ return _props.getCcolM1() + 1;
+ }
+
public Object clone()
throws CloneNotSupportedException
{
See the License for the specific language governing permissions and
limitations under the License.
==================================================================== */
-
+
package org.apache.poi.hwpf.usermodel;
import java.util.ArrayList;
while (rowEnd < numParagraphs)
{
Paragraph p = getParagraph(rowEnd);
- rowEnd++;
if (p.isTableRowEnd() && p.getTableLevel() == levelNum)
{
_rows.add(new TableRow(rowStart, rowEnd, this, levelNum));
rowStart = rowEnd;
}
+ rowEnd++;
}
}