SimpleShape 构造函数 (Int32, Int32, Int32, Int32)

初始化 SimpleShape 类的新实例,指定其大小和位置。

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

语法

声明
Protected Sub New ( _
    left As Integer, _
    top As Integer, _
    width As Integer, _
    height As Integer _
)
protected SimpleShape(
    int left,
    int top,
    int width,
    int height
)
protected:
SimpleShape(
    int left, 
    int top, 
    int width, 
    int height
)
new : 
        left:int * 
        top:int * 
        width:int * 
        height:int -> SimpleShape
protected function SimpleShape(
    left : int, 
    top : int, 
    width : int, 
    height : int
)

参数

备注

SimpleShape 类是 OvalShapeRectangleShape 控件的基类。 由于通常不使用此类创建类的实例,因此通常不直接调用此构造函数,而是通过派生类来调用。

SimpleShape 构造函数的此版本设置形状的位置和大小。

.NET Framework 安全性

请参见

参考

SimpleShape 类

SimpleShape 重载

Microsoft.VisualBasic.PowerPacks 命名空间

其他资源

Line 和 Shape 控件简介 (Visual Studio)

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

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