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 distance, in points, from the top of row 1 to the top edge of the XmlMappedRange control.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel (in Microsoft.Office.Tools.Excel.dll)
Syntax
'Declaration
ReadOnly Property Top As Object
Get
Object Top { get; }
Property Value
Type: System.Object
The distance, in points, from the top of row 1 to the top edge of the XmlMappedRange control.
Remarks
The value is returned as a double.
Examples
The following code example uses the Left and Top properties to display the distance from the left edge of column A to the left edge of an XmlMappedRange, and the distance from the top of row 1 to the top edge of the XmlMappedRange. This code example assumes that the current worksheet contains an XmlMappedRange named CustomerLastNameCell.
Private Sub DisplayLeftAndTop()
MsgBox("The left border of CustomerLastNameCell is at " & _
Me.CustomerLastNameCell.Left & " and the top is at " & _
Me.CustomerLastNameCell.Top & ".")
End Sub
private void DisplayLeftAndTop()
{
MessageBox.Show("The left border of CustomerLastNameCell is at " +
this.CustomerLastNameCell.Left + " and the top is at " +
this.CustomerLastNameCell.Top + ".");
}
.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.