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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。