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.
    Supported Frameworks

    .NET: net5.0, net5.0-windows, net6.0, net6.0-macos, net6.0-windows, net7.0, net7.0-macos, net7.0-windows, net8.0, net8.0-browser, net8.0-macos, net8.0-windows, net9.0, net9.0-browser, net9.0-macos, net9.0-windows, net10.0, net10.0-browser, net10.0-macos, net10.0-windows.

    .NET Framework: net40, net403, net45, net451, net452, net46, net461, net462, net463, net47, net471, net472, net48, net481.

    See Also