ContextNodeLinkDeletingEventArgs.LinkToBeDeleted Property
Gets the context link that the InkAnalyzer is removing.
Namespace: Microsoft.Ink
Assembly: Microsoft.Ink.Analysis (in Microsoft.Ink.Analysis.dll)
Syntax
'Declaration
Public ReadOnly Property LinkToBeDeleted As ContextLink
'Usage
Dim instance As ContextNodeLinkDeletingEventArgs
Dim value As ContextLink
value = instance.LinkToBeDeleted
public ContextLink LinkToBeDeleted { get; }
public:
property ContextLink^ LinkToBeDeleted {
ContextLink^ get ();
}
public function get LinkToBeDeleted () : ContextLink
Property Value
Type: Microsoft.Ink.ContextLink
The context link classes that the InkAnalyzer is removing.
Examples
The following example defines the method, RemoveContextNodeLink, that handles the ContextNodeLinkDeleting event. The event information is passed to the document model object, theDocumentModel.
This example does not provide the definition of the document model or demonstrate how it processes the information passed to it.
'/ <summary>
'/ Handles the InkAnalyzer.ContextNodeLinkDeleting event.
'/ </summary>
'/ <param name="sender">The source of the event.</param>
'/ <param name="e">The event data.</param>
Private Sub RemoveContextNodeLink( _
ByVal sender As Object, _
ByVal e As Microsoft.Ink.ContextNodeLinkDeletingEventArgs)
Me.theDocumentModel.RemoveLink(e.LinkToBeDeleted)
End Sub 'RemoveContextNodeLink
/// <summary>
/// Handles the InkAnalyzer.ContextNodeLinkDeleting event.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The event data.</param>
private void RemoveContextNodeLink(
object sender, Microsoft.Ink.ContextNodeLinkDeletingEventArgs e)
{
this.theDocumentModel.RemoveLink(e.LinkToBeDeleted);
}
Platforms
Windows 7, Windows Vista, Windows Server 2008 R2, Windows Server 2008
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
ContextNodeLinkDeletingEventArgs Class