AGI STK VGT 11Send comments on this topic.
Remove Method (IAgCrdnPointGroup)
See Also  Example
PointName
Specify a name of the point to be removed.
Windows






Windows & Linux

Description

Removes a specified point by name.

Syntax

[Visual Basic .NET]
Public Sub Remove( _
   ByVal PointName As String _
) 
[C#]
public void Remove(
   string PointName
);
[Managed C++]
public: void Remove(
   String __gc ^ PointName
);
[Java]
public  remove(
   String PointName
);
[Unmanaged C++]
public: HRESULT Remove(
   BSTR PointName
);

Parameters

PointName
Specify a name of the point to be removed.

Example

Remove an existing point with the specified name.
[C#]Copy Code
// Check if the specified point exists 
if (provider.Points.Contains("PointName")) 

    provider.Points.Remove("PointName"); 

 

Remove an existing point with the specified name.
[Visual Basic .NET]Copy Code
' Check if the specified point exists
If provider.Points.Contains("PointName") Then
    provider.Points.Remove("PointName")
End If

See Also

© 2018 Analytical Graphics, Inc. All Rights Reserved.