ShapeCollection.Count 属性
获取形状的数目集合中的。
命名空间: Microsoft.VisualBasic.PowerPacks
程序集: Microsoft.VisualBasic.PowerPacks.Vs(在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)
语法
声明
Public ReadOnly Property Count As Integer
public int Count { get; }
public:
virtual property int Count {
int get () sealed;
}
abstract Count : int
override Count : int
final function get Count () : int
属性值
类型:System.Int32
代表形态数集合中的 Integer 。
实现
备注
Count 属性可用于确定了形状。 ShapeCollection。 它还可用于通过在 For…Next 语句的集合重复。
示例
下面的示例阐释 Count 属性的用法。 此示例要求您具有 LineShape、 OvalShape和一个 RectangleShape 控件在窗体上。
Private Sub Shapes_Click(
) Handles RectangleShape1.Click,
OvalShape1.Click, LineShape1.Click
Dim i As Integer = ShapeContainer1.Shapes.Count
MsgBox("There are " & CStr(i) & " shapes in the collection.")
End Sub
private void Shapes_Click(System.Object sender, System.EventArgs e)
{
int i = shapeContainer1.Shapes.Count;
Console.WriteLine("There are {0} shapes in the collection.", i);
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。
请参见
参考
Microsoft.VisualBasic.PowerPacks 命名空间
其他资源
Line 和 Shape 控件简介 (Visual Studio)