NamedRange.Left 屬性
取得欄 A 左邊緣到 NamedRange 控制項左邊緣的距離。
命名空間: Microsoft.Office.Tools.Excel
組件: Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)
語法
'宣告
ReadOnly Property Left As Object
Object Left { get; }
屬性值
型別:System.Object
欄 A 左邊緣到 NamedRange 控制項左邊緣的距離。
備註
如果範圍的寬度超過一個欄,則會使用範圍中最左邊的欄。
如果視窗為最大化,則 Left 會傳回負數,負數值會依據視窗框線的寬度而有不同。 將 Left 設定為 0 (零),會使視窗比應用程式視窗最大化時稍微小一些。 換句話說,如果 Left 為 0 (零),則 Microsoft Office Excel 主視窗的左框線在畫面上只能勉強看到。
範例
下列程式碼範例會建立 NamedRange 控制項。 範例會接著使用 Left 和 Top 屬性,顯示欄 A 左邊緣到 NamedRange 左邊緣的距離,以及列 1 頂端到 NamedRange 頂端的距離。
這是示範文件層級自訂的範例。
Private leftAndTopRange As Microsoft.Office.Tools.Excel.NamedRange
Private Sub DisplayLeftAndTop()
leftAndTopRange = Me.Controls.AddNamedRange( _
Me.Range("B4", "D6"), "addIndentRange")
leftAndTopRange.Select()
MessageBox.Show("The left border of the NamedRange " & _
"control is at " & Me.leftAndTopRange.Left & _
" and the top is at " & Me.leftAndTopRange.Top & ".")
End Sub
Microsoft.Office.Tools.Excel.NamedRange leftAndTopRange;
private void DisplayLeftAndTop()
{
leftAndTopRange = this.Controls.AddNamedRange(
this.Range["B4", "D6"], "addIndentRange");
leftAndTopRange.Select();
MessageBox.Show("The left border of the NamedRange control "
+ "is at " + this.leftAndTopRange.Left +
" and the top is at " + this.leftAndTopRange.Top + ".");
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。