HorizontalPageBreak clase

HorizontalPageBreak clase

Encapsula el objeto que representa un salto de página horizontal.

El tipo HorizontalPageBreak expone los siguientes miembros:

Propiedades

PropiedadDescripción
start_columnObtiene el índice de la columna inicial de este salto de página horizontal.
end_columnObtiene el índice de la columna final de este salto de página horizontal.
rowObtiene el índice de fila de base cero.

Ejemplo

from aspose.cells import Workbook

# Instantiating a Workbook object
workbook = Workbook()
# Obtaining the reference of the newly added worksheet by passing its sheet index
worksheet = workbook.worksheets[0]
# Add a page break at cell Y30
Index = worksheet.horizontal_page_breaks.add("Y30")
# get the newly added horizontal page break
hPageBreak = worksheet.horizontal_page_breaks[Index]

Ver también