All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aspose.cells.HorizontalPageBreak.html Maven / Gradle / Ivy

There is a newer version: 23.1
Show newest version





HorizontalPageBreak




com.aspose.cells
Class HorizontalPageBreak

java.lang.Object
    extended by com.aspose.cells.HorizontalPageBreak

public class HorizontalPageBreak 
extends java.lang.Object

Encapsulates the object that represents a horizontal page break.

Example:

//Instantiating a Workbook object
Workbook workbook = new Workbook();

//Obtaining the reference of the newly added worksheet by passing its sheet index
Worksheet worksheet = workbook.getWorksheets().get(0);

//Add a page break at cell Y30
int Index = worksheet.getHorizontalPageBreaks().add("Y30");

//get the newly added horizontal page break
HorizontalPageBreak hPageBreak = worksheet.getHorizontalPageBreaks().get(Index);


Property Getters/Setters Summary
intgetEndColumn()
           Gets the end column index of this horizontal page break.
intgetRow()
           Gets the zero based row index.
intgetStartColumn()
           Gets the start column index of this horizontal page break.
 

Property Getters/Setters Detail

getStartColumn

public int getStartColumn()
Gets the start column index of this horizontal page break.

getEndColumn

public int getEndColumn()
Gets the end column index of this horizontal page break.

getRow

public int getRow()
Gets the zero based row index.

See Also:
          Aspose.Cells Documentation - the home page for the Aspose.Cells Product Documentation.
          Aspose.Cells Support Forum - our preferred method of support.





© 2015 - 2024 Weber Informatics LLC | Privacy Policy