[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IWorksheet.VPageBreaks

VPageBreaks Property

VPageBreaks

Gets the collection of vertical page breaks within the print area.

Use the returned IVPageBreaks collection to add, access, and manage vertical page breaks on the worksheet.

Declaration
IVPageBreaks VPageBreaks { get; }
ReadOnly Property VPageBreaks As IVPageBreaks
Examples
worksheet.Range["A1:F10"].Value = "Data";
IVPageBreaks pageBreaks = worksheet.VPageBreaks;
pageBreaks.Add(worksheet.Range["D1"]);
IVPageBreak pageBreak = pageBreaks[0];
IRange location = pageBreak.Location;