InfoConnect API Guide
Attachmate.Reflection.Web.Msie Namespace / NavigatingEventArgs Class / Cancel Property
Example


In This Topic
    Cancel Property (NavigatingEventArgs)
    In This Topic
    Cancel property to indicate whether the user wants to cancel the navigation. Set Cancel property to true to cancel the navigation.
    Syntax
    'Declaration
     
    
    Public Property Cancel As Boolean
    'Usage
     
    
    Dim instance As NavigatingEventArgs
    Dim value As Boolean
     
    instance.Cancel = value
     
    value = instance.Cancel
    public bool Cancel {get; set;}
    Example
    NavigatingEventArgs Nav;
    Nav.Url = true;
    See Also