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
)
参数
- left
类型:System.Int32
- top
类型:System.Int32
- width
类型:System.Int32
表示宽度的 Integer (以像素为单位) 的 SimpleShape。
- height
类型:System.Int32
表示高度的 Integer (以像素为单位) SimpleShape。
备注
SimpleShape 类是 OvalShape 和 RectangleShape 控件的基类。 由于通常不使用此类创建类的实例,因此通常不直接调用此构造函数,而是通过派生类来调用。
SimpleShape 构造函数的此版本设置形状的位置和大小。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。
请参见
参考
Microsoft.VisualBasic.PowerPacks 命名空间
其他资源
Line 和 Shape 控件简介 (Visual Studio)