XmlMappedRange.PageBreak Property (2007 System)

Gets or sets the location of a page break.

Namespace:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel.v9.0 (in Microsoft.Office.Tools.Excel.v9.0.dll)

Syntax

'Declaration
<BrowsableAttribute(False)> _
Public Property PageBreak As Integer
'Usage
Dim instance As XmlMappedRange 
Dim value As Integer 

value = instance.PageBreak

instance.PageBreak = value
[BrowsableAttribute(false)]
public int PageBreak { get; set; }
[BrowsableAttribute(false)]
public:
property int PageBreak {
    int get ();
    void set (int value);
}
public function get PageBreak () : int 
public function set PageBreak (value : int)

Property Value

Type: System.Int32

Remarks

You can set this property using one of the following XlPageBreakvalues:

This property can return the location of either automatic or manual page breaks, but it can only set the location of manual breaks (it can only be set to xlPageBreakManual or xlPageBreakNone).

Examples

The following code example uses the PageBreak property to set a page break at an XmlMappedRange. This code example assumes that the current worksheet contains an XmlMappedRange named CustomerLastNameCell.

Private Sub SetPageBreak()
    Me.CustomerLastNameCell.PageBreak = Excel.XlPageBreak.xlPageBreakManual
End Sub
private void SetPageBreak()
{
    this.CustomerLastNameCell.PageBreak = 
        (int)Excel.XlPageBreak.xlPageBreakManual;
}

.NET Framework Security

See Also

Reference

XmlMappedRange Class

XmlMappedRange Members

Microsoft.Office.Tools.Excel Namespace