AGI STK VGT 11 Send comments on this topic.
Remove Method (IAgCrdnParameterSetGroup)
See Also  Example
EventName
Specify a name of an element to be removed.





Description

Removes a specified element.

Syntax

[Visual Basic .NET]
Public Sub Remove( _
   ByVal EventName As String _
) 

[C#]
public void Remove(
string EventName
);

[Managed C++]
public: void Remove(
String __gc ^ EventName
);

[Java]
public  remove(
String EventName
);

[Unmanaged C++]
public: HRESULT Remove(
BSTR EventName
);

Parameters

EventName
Specify a name of an element to be removed.

Example

Remove an existing parameter set with the specified name.
[C#] Copy Code
// Check if the parameter set with specified name exists 
if (provider.ParameterSets.Contains("ParameterSetName")) 

    provider.ParameterSets.Remove("ParameterSetName"); 

 

Remove an existing parameter set with the specified name.
[Visual Basic .NET] Copy Code
' Check if the parameter set with specified name exists
If provider.ParameterSets.Contains("ParameterSetName") Then
    provider.ParameterSets.Remove("ParameterSetName")
End If

See Also

© 2016 All Rights Reserved.

STK Programming Interface 11.0.1