Searches for a an element with a given name. Returns false if the specified element does not exist.
[Visual Basic .NET] |
---|
Public Function Contains( _ ByVal Name As String _ ) As Boolean |
[C#] |
---|
public bool Contains( string Name ); |
[Managed C++] |
---|
public: bool Contains( String __gc ^ Name ); |
[Java] |
---|
public bool contains( String Name ); |
[Python - STK API ] |
---|
def Contains(self, Name:str) -> bool: |
- Name
- An element to search for.