com.spire.pdf.grid
Class PdfGridRow

java.lang.Object
  extended by com.spire.pdf.grid.PdfGridRow

public class PdfGridRow
extends java.lang.Object

The class for pdf grid row operations


Constructor Summary
PdfGridRow(PdfGrid grid)
          Initializes a new instance of the class.
 
Method Summary
 void applyStyle(PdfGridCellStyle cellStyle)
          Applies the cell style to all the cells present in a row.
 boolean getAllowCrossPages()
          Gets whether to cross a page.
 PdfGridCellCollection getCells()
          Gets the cells.
 float getHeight()
          Gets the height.
 PdfGridRowStyle getStyle()
          Gets the row style.
 void setAllowCrossPages(boolean value)
          Sets whether to cross a page.
 void setHeight(float value)
          Sets the height.
 void setStyle(PdfGridRowStyle value)
          Sets the row style.
 

Constructor Detail

PdfGridRow

public PdfGridRow(PdfGrid grid)
Initializes a new instance of the class.

Method Detail

getCells

public PdfGridCellCollection getCells()
Gets the cells.


getStyle

public PdfGridRowStyle getStyle()
Gets the row style.


setStyle

public void setStyle(PdfGridRowStyle value)
Sets the row style.


getHeight

public float getHeight()
Gets the height.


setHeight

public void setHeight(float value)
Sets the height.


getAllowCrossPages

public boolean getAllowCrossPages()
Gets whether to cross a page.


setAllowCrossPages

public void setAllowCrossPages(boolean value)
Sets whether to cross a page.


applyStyle

public void applyStyle(PdfGridCellStyle cellStyle)
Applies the cell style to all the cells present in a row.

Parameters:
cellStyle - The cell style.