Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Removes a ContextLinkBase object from the ContextLinkBaseCollection.
Namespace: System.Windows.Ink.AnalysisCore
Assembly: IACore (in IACore.dll)
Syntax
'Declaration
Public Sub Remove ( _
link As ContextLinkBase _
)
'Usage
Dim instance As ContextLinkBaseCollection
Dim link As ContextLinkBase
instance.Remove(link)
public void Remove(
ContextLinkBase link
)
public:
void Remove(
ContextLinkBase^ link
)
public function Remove(
link : ContextLinkBase
)
Parameters
link
Type: System.Windows.Ink.AnalysisCore.ContextLinkBaseThe ContextNode object to be removed.
Remarks
link is also removed from the DestinationNode object's Links property.
Examples
The following example removes a ContextLinkBase named myLink from a ContextLinkBaseCollection named links.
links.Remove(myLink)
links.Remove(myLink);
Platforms
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information
.NET Framework
Supported in: 3.0
See Also
Reference
ContextLinkBaseCollection Class