XmlMappedRange.Left Property

Definition

Gets a value that represents the distance from the left edge of column A to the left edge of the XmlMappedRange control.

public:
 property System::Object ^ Left { System::Object ^ get(); };
public object Left { get; }
member this.Left : obj
Public ReadOnly Property Left As Object

Property Value

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 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

Applies to