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






Windows & Linux

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 the axes with specified name exist.
[C#]Copy Code
//Check if the axes with specified name exist 
if (provider.Axes.Contains("AxesName")) 

    Console.WriteLine("Axes \"{0}\" already exist!""AxesName"); 

 

Check whether the axes with specified name exist.
[Visual Basic .NET]Copy Code
'Check if the axes with specified name exist
If provider.Axes.Contains("AxesName") Then
    Console.WriteLine("Axes ""{0}"" already exist!", "AxesName")
End If

See Also

© 2018 Analytical Graphics, Inc. All Rights Reserved.