Share via


ShapeCollection.IList.Contains Method (Object)

 

Determines whether the specified object is in the collection.

Namespace:   Microsoft.VisualBasic.PowerPacks
Assembly:  Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)

Syntax

bool IList.Contains(
    object value
)
private:
virtual bool Contains(
    Object^ value
) sealed = IList::Contains
private abstract Contains : 
        value:Object -> bool
private override Contains : 
        value:Object -> bool
Private Function Contains (
    value As Object
) As Boolean
    Implements IList.Contains

Parameters

  • value
    Type: System.Object

    The object to locate in the collection.

Return Value

Type: System.Boolean

true if the object exists; otherwise, false.

Implements

IList.Contains(Object)

See Also

ShapeCollection Class
Microsoft.VisualBasic.PowerPacks Namespace

Return to top