Share via


XmlMappedRange.Row Property (2007 System)

Gets the number of the row that contains the XmlMappedRange control.

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

Syntax

'Declaration
Public ReadOnly Property Row As Integer
'Usage
Dim instance As XmlMappedRange 
Dim value As Integer 

value = instance.Row
public int Row { get; }
public:
property int Row {
    int get ();
}
public function get Row () : int

Property Value

Type: System.Int32
The number of the row that contains the XmlMappedRange control.

Examples

The following code example uses the Column and Row properties to display the column and row numbers of an XmlMappedRange named CustomerLastNameCell. This code example assumes that the current worksheet contains an XmlMappedRange named CustomerLastNameCell.

Private Sub DisplayColumnAndRow()
    MsgBox("CustomerLastNameCell is in column " & _
        Me.CustomerLastNameCell.Column.ToString() & " and row " & _
        Me.CustomerLastNameCell.Row.ToString())
End Sub
private void DisplayColumnAndRow()
{
    MessageBox.Show("CustomerLastNameCell is in column " +
        this.CustomerLastNameCell.Column.ToString() + " and row " +
        this.CustomerLastNameCell.Row.ToString());
}

.NET Framework Security

See Also

Reference

XmlMappedRange Class

XmlMappedRange Members

Microsoft.Office.Tools.Excel Namespace