NamedRange.Previous Property

Gets a Microsoft.Office.Interop.Excel.Range that represents the previous cell.

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

Syntax

'Declaration
ReadOnly Property Previous As Range
Range Previous { get; }

Property Value

Type: Microsoft.Office.Interop.Excel.Range
A Microsoft.Office.Interop.Excel.Range that represents the previous cell.

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.

Examples

The following code example creates a NamedRange and then uses the Previous property to select the cell to the left of the NamedRange.

This example is for a document-level customization.

Private previousRange As Microsoft.Office.Tools.Excel.NamedRange

Private Sub SelectPrevious()
    previousRange = Me.Controls.AddNamedRange( _
        Me.Range("C1"), "prefixRange")
    Me.previousRange.Previous.Select()
End Sub
Microsoft.Office.Tools.Excel.NamedRange previousRange;
private void SelectPrevious()
{
    previousRange = this.Controls.AddNamedRange(
         this.Range["C1"], "prefixRange");
    this.previousRange.Previous.Select();
}

.NET Framework Security

See Also

Reference

NamedRange Interface

Microsoft.Office.Tools.Excel Namespace