[]
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.
IVPageBreaks VPageBreaks { get; }
ReadOnly Property VPageBreaks As IVPageBreaks
worksheet.Range["A1:F10"].Value = "Data";
IVPageBreaks pageBreaks = worksheet.VPageBreaks;
pageBreaks.Add(worksheet.Range["D1"]);
IVPageBreak pageBreak = pageBreaks[0];
IRange location = pageBreak.Location;