ShapeCollection.Contains 方法

更新:2007 年 11 月

确定指定的 Shape 是否为集合的成员。

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

语法

声明
Public Function Contains ( _
    value As Shape _
) As Boolean
用法
Dim instance As ShapeCollection
Dim value As Shape
Dim returnValue As Boolean

returnValue = instance.Contains(value)
public bool Contains(
    Shape value
)
public:
bool Contains(
    Shape^ value
)
public function Contains(
    value : Shape
) : boolean

参数

返回值

类型:System.Boolean

如果 Shape 是集合的成员,则为 true;否则为 false。

备注

您可以通过此方法尝试在 Shape 上执行操作之前确定 Shape 是否为集合的成员。可以使用此方法确认 Shape 已添加到集合中或者确认它仍是集合的成员。

示例

下面的示例演示如何使用 Contains 方法从窗体中移除 Shape,但前提是该形状是窗体的 ShapeCollection 的成员。此示例要求窗体上至少有两个 OvalShape 控件。

Private Sub Form1_Click(ByVal sender As Object, _
 ByVal e As System.EventArgs) Handles Me.Click
    Dim canvas As ShapeContainer
    ' Get the ShapeContainer.
    canvas = OvalShape1.Parent
    ' If OvalShape2 is in the same collection, remove it.
    If canvas.Shapes.Contains(OvalShape2) Then
        canvas.Shapes.Remove(OvalShape2)
    End If
End Sub

private void form1_Click(object sender, System.EventArgs e)
{
    ShapeContainer canvas;
    // Get the ShapeContainer.
    canvas = ovalShape1.Parent;
    // If OvalShape2 is in the same collection, remove it.
    if (canvas.Shapes.Contains(ovalShape2))
    {
        canvas.Shapes.Remove(ovalShape2);
    }
}

权限

另请参见

参考

ShapeCollection 类

ShapeCollection 成员

Microsoft.VisualBasic.PowerPacks 命名空间

其他资源

Line 和 Shape 控件简介 (Visual Studio)

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

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