AGI STK VGT 11 Send comments on this topic.
Contains Method (IAgCrdnEventArrayGroup)
See Also  Example
Name
An element to search for.





Description

Searches for a an element with a given name. Returns false if the specified element does not exist.

Syntax

[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
);

[Unmanaged C++]
public: HRESULT Contains(
BSTR Name,
VARIANT_BOOL * ReturnValue
);

Parameters

Name
An element to search for.

Example

Check whether an event array with specified name already exists.
[C#] Copy Code
//Check if an event array with the specified name already exists. 
if (provider.EventArrays.Contains("EventArrayName")) 

    Console.WriteLine("The event array \"{0}\" already exists!""EventArrayName"); 

 

Check whether an event array with specified name already exists.
[Visual Basic .NET] Copy Code
'Check if an event array with the specified name already exists.
If provider.EventArrays.Contains("EventArrayName") Then
    Console.WriteLine("The event array ""{0}"" already exists!", "EventArrayName")
End If

See Also

© 2016 All Rights Reserved.

STK Programming Interface 11.0.1