Aspose::Cells::IVerticalPageBreak Class Referenceabstract

Encapsulates the object that represents a vertical page break. More...

Inherits Object.

Public Member Functions

virtual Aspose::Cells::Systems::Int32 GetStartRow ()=0
 Gets the start row index of the vertical page break. More...
 
virtual Aspose::Cells::Systems::Int32 GetEndRow ()=0
 Gets the end row index of the vertical page break. More...
 
virtual Aspose::Cells::Systems::Int32 GetColumn ()=0
 Gets the column index of the vertical page break. More...
 

Detailed Description

Encapsulates the object that represents a vertical page break.

[C++]
intrusive_ptr<IWorkbook> excel = Factory::CreateIWorkbook();
//Add a pagebreak at G5
intrusive_ptr<IWorksheet> ws = excel->GetIWorksheets()->GetObjectByIndex(0);
ws->GetIHorizontalPageBreaks()->Add(new String("G5"));
ws->GetIVerticalPageBreaks()->Add(new String("G5"));

Member Function Documentation

◆ GetColumn()

virtual Aspose::Cells::Systems::Int32 Aspose::Cells::IVerticalPageBreak::GetColumn ( )
pure virtual

Gets the column index of the vertical page break.

◆ GetEndRow()

virtual Aspose::Cells::Systems::Int32 Aspose::Cells::IVerticalPageBreak::GetEndRow ( )
pure virtual

Gets the end row index of the vertical page break.

◆ GetStartRow()

virtual Aspose::Cells::Systems::Int32 Aspose::Cells::IVerticalPageBreak::GetStartRow ( )
pure virtual

Gets the start row index of the vertical page break.