Button.Bottom 屬性
取得 Button 的下邊緣和工作表的上邊緣之間的距離 (以點為單位)。
命名空間: Microsoft.Office.Tools.Excel.Controls
組件: Microsoft.Office.Tools.Excel.v4.0.Utilities (在 Microsoft.Office.Tools.Excel.v4.0.Utilities.dll 中)
語法
'宣告
Public ReadOnly Property Bottom As Double
public double Bottom { get; }
屬性值
型別:System.Double
在 Button 的下邊緣和工作表的上邊緣之間的距離 (以點為單位)。
備註
這個屬性的值等於 Top 屬性值和 Height 屬性值的總和。
Button.Bottom 屬性使用點,而 Control.Bottom 屬性則使用像素。
範例
下列程式碼範例會將 Button 控制項加入至目前工作表的儲存格 B2。 這個按鈕的 Click 事件處理常式會顯示按鈕的 Right 和 Bottom 屬性目前的值。 當在執行階段調整欄 B 或列 2 的大小時,這些值會隨著欄或列的新大小變更。
這是示範文件層級自訂的範例。
Private Sub DisplayRightAndBottom()
Dim PointButton As Microsoft.Office.Tools.Excel.Controls.Button = _
Me.Controls.AddButton(Me.Range("B2", "C3"), "PointButton")
PointButton.Text = "Click to display location"
AddHandler PointButton.Click, AddressOf PointButton_Click
End Sub
Private Sub PointButton_Click(ByVal sender As Object, ByVal e As EventArgs)
Dim ClickedButton As Microsoft.Office.Tools.Excel.Controls.Button = _
CType(sender, Microsoft.Office.Tools.Excel.Controls.Button)
MsgBox("Right is: " & ClickedButton.Right.ToString() & _
"; Bottom is: " & ClickedButton.Bottom.ToString())
End Sub
private void DisplayRightAndBottom()
{
Microsoft.Office.Tools.Excel.Controls.Button pointButton =
this.Controls.AddButton(this.Range["B2", "C3"],
"pointButton");
pointButton.Text = "Click to display location";
pointButton.Click += new EventHandler(pointButton_Click);
}
void pointButton_Click(object sender, EventArgs e)
{
Microsoft.Office.Tools.Excel.Controls.Button clickedButton =
(Microsoft.Office.Tools.Excel.Controls.Button)sender;
MessageBox.Show("Right is: " + clickedButton.Right.ToString() +
"; Bottom is: " + clickedButton.Bottom.ToString());
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。