SimpleShape.Bottom 属性

获取距离,以像素为单位),则形状的下边缘与其容器的工作区之间上边缘。

命名空间:  Microsoft.VisualBasic.PowerPacks
程序集:  Microsoft.VisualBasic.PowerPacks.Vs(在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)

语法

声明
<BrowsableAttribute(False)> _
Public ReadOnly Property Bottom As Integer
[BrowsableAttribute(false)]
public int Bottom { get; }
[BrowsableAttribute(false)]
public:
property int Bottom {
    int get ();
}
[<BrowsableAttribute(false)>]
member Bottom : int
function get Bottom () : int

属性值

类型:System.Int32
表示距离,以像素为单位),则形状边缘与其容器的工作区之间上边缘的 Int32

备注

此属性的值等于 Top 属性值与 Height 属性值之和。

Bottom 属性为只读属性。 您可以通过更改 TopHeight 属性的值来更改此值。

示例

下面的示例演示如何使用 Bottom 和 Right 属性定位形状。 此示例要求您具有名为 RectangleShape1 和 RectangleShape2 的两个 RectangleShape 控件在窗体上。

Private Sub RectangleShape1_Click() Handles RectangleShape1.Click
    ' Set the upper-left corner of Rectangle2 
    ' to the lower-right corner of Rectangle1.
    RectangleShape2.Left = RectangleShape1.Right
    RectangleShape2.Top = RectangleShape1.Bottom
End Sub
private void rectangleShape1_Click(System.Object sender, System.EventArgs e)
{
    // Set the upper-left corner of Rectangle2 
    // to the lower-right corner of Rectangle1.
    rectangleShape2.Left = rectangleShape1.Right;
    rectangleShape2.Top = rectangleShape1.Bottom;
}

.NET Framework 安全性

请参见

参考

SimpleShape 类

Microsoft.VisualBasic.PowerPacks 命名空间

其他资源

Line 和 Shape 控件简介 (Visual Studio)

如何:使用 LineShape 控件绘制直线 (Visual Studio)

如何:使用 OvalShape 和 RectangleShape 控件绘制形状 (Visual Studio)