SimpleShape.SetBounds 方法
设置形状的区域到指定的位置和大小。
命名空间: Microsoft.VisualBasic.PowerPacks
程序集: Microsoft.VisualBasic.PowerPacks.Vs(在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)
语法
声明
Public Sub SetBounds ( _
left As Integer, _
top As Integer, _
width As Integer, _
height As Integer _
)
public void SetBounds(
int left,
int top,
int width,
int height
)
public:
void SetBounds(
int left,
int top,
int width,
int height
)
member SetBounds :
left:int *
top:int *
width:int *
height:int -> unit
public function SetBounds(
left : int,
top : int,
width : int,
height : int
)
参数
- left
类型:System.Int32
- top
类型:System.Int32
- width
类型:System.Int32
形状的新的宽度属性值。
- height
类型:System.Int32
形状的新的高度属性值。
备注
可以使用 SetBounds 方法更改形状的大小和位置单个语句中
示例
下面的示例演示如何使用 SetBounds 方法更改形状的大小和位置。 具体而言,形状将移动到窗体的左上角和更改为正方形。 此示例要求您具有名为在窗体的 RectangleShape1 的一个 RectangleShape 控件。
Private Sub RectangleShape1_Click() Handles RectangleShape1.Click
' Change the Bounds property.
RectangleShape1.SetBounds(0, 0, 100, 100)
End Sub
private void rectangleShape1_Click(System.Object sender, System.EventArgs e)
{
// Change the Bounds property.
rectangleShape1.SetBounds(0, 0, 100, 100);
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。
请参见
参考
Microsoft.VisualBasic.PowerPacks 命名空间
其他资源
Line 和 Shape 控件简介 (Visual Studio)
如何:使用 LineShape 控件绘制直线 (Visual Studio)