Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets the number of the first row of the first area in the NamedRange control.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel (in Microsoft.Office.Tools.Excel.dll)
Syntax
'Declaration
ReadOnly Property Row As Integer
Get
int Row { get; }
Property Value
Type: System.Int32
The number of the first row of the first area in the NamedRange control.
Examples
The following code example creates a NamedRange and uses the Column and Row properties to display the numbers of the first column and row in the NamedRange.
This example is for a document-level customization.
Private columnAndRowRange As Microsoft.Office.Tools.Excel.NamedRange
Private Sub DisplayColumnAndRow()
columnAndRowRange = Me.Controls.AddNamedRange( _
Me.Range("A3", "D6"), "columnAndRowRange")
MessageBox.Show("The first column in the range is column " & _
Me.columnAndRowRange.Column.ToString() & _
" and the first row is " & _
Me.columnAndRowRange.Row.ToString())
End Sub
Microsoft.Office.Tools.Excel.NamedRange columnAndRowRange;
private void DisplayColumnAndRow()
{
columnAndRowRange = this.Controls.AddNamedRange(
this.Range["A3", "D6"], "columnAndRowRange");
MessageBox.Show("The first column in the range is column " +
this.columnAndRowRange.Column.ToString() +
" and the first row is " +
this.columnAndRowRange.Row.ToString());
}
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.