Xceed Workbooks for .NET v3.0 Documentation
Xceed.Workbooks.NET Assembly / Xceed.Workbooks.NET Namespace / PageLayout Class / RemovePageBreaks Method
The index that corresponds to the targeted Row; the page break on top of that Row will be removed.
The index that corresponds to the targeted Column; the page break at the left of this Column will be removed.


In This Topic
    RemovePageBreaks Method
    In This Topic
    Removes page breaks from the Worksheet, using a Row & a Column to determine which page breaks will be removed.
    Syntax
    'Declaration
     
    
    Public Sub RemovePageBreaks( _
       ByVal row As Integer, _
       ByVal columns As Integer _
    ) 
    'Usage
     
    
    Dim instance As PageLayout
    Dim row As Integer
    Dim columns As Integer
     
    instance.RemovePageBreaks(row, columns)
    public void RemovePageBreaks( 
       int row,
       int columns
    )

    Parameters

    row
    The index that corresponds to the targeted Row; the page break on top of that Row will be removed.
    columns
    The index that corresponds to the targeted Column; the page break at the left of this Column will be removed.
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also