Description
Removes a specified vector.
Syntax
| [Visual Basic .NET] |
|---|
Public Sub Remove( _
ByVal VectorName As String _
)
|
| [Managed C++] |
|---|
public: void Remove(
String __gc ^ VectorName
);
|
| [Unmanaged C++] |
|---|
public: HRESULT Remove(
BSTR VectorName
);
|
[Python - STK API ] |
|---|
def Remove(self, VectorName:str) -> None:
|
Parameters
See Also
Example
Remove an existing vector with the specified name.
| [C#] |
|---|
// Check if the vector with specified name already exists.
if (provider.Vectors.Contains(VectorName))
{
provider.Vectors.Remove(VectorName);
}
|
|
Remove an existing vector with the specified name.
| [Visual Basic .NET] |
|---|
' Check if the vector with specified name already exists.
If provider.Vectors.Contains(VectorName) Then
provider.Vectors.Remove(VectorName)
End If
|
|