SimpleShape.Right 属性
获取距离,以像素为单位),则形状的右边缘与其容器的工作区左边缘之间。
命名空间: Microsoft.VisualBasic.PowerPacks
程序集: Microsoft.VisualBasic.PowerPacks.Vs(在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)
语法
声明
<BrowsableAttribute(False)> _
Public ReadOnly Property Right As Integer
[BrowsableAttribute(false)]
public int Right { get; }
[BrowsableAttribute(false)]
public:
property int Right {
int get ();
}
[<BrowsableAttribute(false)>]
member Right : int
function get Right () : int
属性值
类型:System.Int32
表示距离,以像素为单位),则形状右边缘与其容器之间的工作区左边缘的 Int32 。
备注
Right 属性的值等于 Left 属性值与 Width 属性值之和。
Right 属性是只读的。 可以取消更改此属性通过更改 Left 或 Width 属性的值或通过调用 SetBounds 方法。
示例
下面的示例演示如何使用 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 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。
请参见
参考
Microsoft.VisualBasic.PowerPacks 命名空间
其他资源
Line 和 Shape 控件简介 (Visual Studio)