WinForms

Code Examples Upgrade Guide User Guide Demos Support Forums Download
  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class TreeNodeAdvCancelableEditEventArgs

    Show / Hide Table of Contents

    Class TreeNodeAdvCancelableEditEventArgs

    Represents the data for the cancelable validation events in the TreeViewAdv.

    Inheritance
    System.Object
    System.EventArgs
    TreeNodeAdvEditEventArgs
    TreeNodeAdvCancelableEditEventArgs
    Inherited Members
    TreeNodeAdvEditEventArgs.Label
    TreeNodeAdvEditEventArgs.Node
    System.EventArgs.Empty
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: Syncfusion.Windows.Forms.Tools
    Assembly: Syncfusion.Tools.Windows.dll
    Syntax
    public class TreeNodeAdvCancelableEditEventArgs : TreeNodeAdvEditEventArgs

    Constructors

    TreeNodeAdvCancelableEditEventArgs(TreeNodeAdv, String)

    Initialize a new instance of the TreeNodeAdvCancelableEditEventArgs class.

    Declaration
    public TreeNodeAdvCancelableEditEventArgs(TreeNodeAdv node, string label)
    Parameters
    Type Name Description
    TreeNodeAdv node

    A TreeNodeAdv instance.

    System.String label

    The new text for the node.

    Properties

    Cancel

    Gets or sets a value indicates whether the event should be cancelled.

    Declaration
    public bool Cancel { get; set; }
    Property Value
    Type Description
    System.Boolean

    ContinueEditing

    Gets or sets a value indicates whether editing should end now.

    Declaration
    public bool ContinueEditing { get; set; }
    Property Value
    Type Description
    System.Boolean

    This property is consulted only when Cancel is set to true. If you Cancel the operation and if this property is set to false, editing mode will end; otherwise editing mode will be preserved. Default is true.

    Remarks

    This property will be ignored by the NodeEditorValidateString event.

    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved