共用方式為


XmlMappedRange.Left 屬性

取得值,表示欄 A 左邊緣到 XmlMappedRange 控制項左邊緣的距離。

命名空間:  Microsoft.Office.Tools.Excel
組件:  Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)

語法

'宣告
ReadOnly Property Left As Object
Object Left { get; }

屬性值

型別:System.Object
欄 A 左邊緣到 XmlMappedRange 控制項左邊緣的距離。

範例

下列程式碼範例使用 Left 和 Top 屬性,顯示欄 A 左邊緣到 XmlMappedRange 左邊緣的距離,以及列 1 頂端到 XmlMappedRange 頂端的距離。這個程式碼範例假設目前工作表包含名為 CustomerLastNameCell 的 XmlMappedRange

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 安全性

請參閱

參考

XmlMappedRange 介面

Microsoft.Office.Tools.Excel 命名空間