Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Gets a value that represents the distance from the left edge of column A to the left 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 Left As Object
Object Left { get; }
Property Value
Type: System.Object
The distance from the left edge of column A to the left 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 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.