XmlMappedRange.Top Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the distance, in points, from the top of row 1 to the top edge of the XmlMappedRange control.
public:
property System::Object ^ Top { System::Object ^ get(); };
public object Top { get; }
member this.Top : obj
Public ReadOnly Property Top As Object
Property Value
The distance, in points, from the top of row 1 to the top edge of the XmlMappedRange control.
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 void DisplayLeftAndTop()
{
MessageBox.Show("The left border of CustomerLastNameCell is at " +
this.CustomerLastNameCell.Left + " and the top is at " +
this.CustomerLastNameCell.Top + ".");
}
Private Sub DisplayLeftAndTop()
MsgBox("The left border of CustomerLastNameCell is at " & _
Me.CustomerLastNameCell.Left & " and the top is at " & _
Me.CustomerLastNameCell.Top & ".")
End Sub
Remarks
The value is returned as a double.