XmlMappedRange.Previous Property

Definition

Gets a Range that represents the previous cell.

public:
 property Microsoft::Office::Interop::Excel::Range ^ Previous { Microsoft::Office::Interop::Excel::Range ^ get(); };
public Microsoft.Office.Interop.Excel.Range Previous { get; }
member this.Previous : Microsoft.Office.Interop.Excel.Range
Public ReadOnly Property Previous As Range

Property Value

A Range that represents the previous cell.

Examples

The following code example uses the Previous property to select the cell to the left of an XmlMappedRange. This code example assumes that the current worksheet contains an XmlMappedRange named CustomerLastNameCell.

private void SelectPrevious()
{
    this.CustomerLastNameCell.Previous.Select();
}
Private Sub SelectPrevious()
    Me.CustomerLastNameCell.Previous.Select()
End Sub

Remarks

This property emulates pressing SHIFT+TAB; unlike the key combination, however, the property returns the previous cell without selecting it.

On a protected sheet, this property returns the previous unlocked cell. On an unprotected sheet, this property always returns the cell immediately to the left of the specified cell.

Applies to