Class TreeGridRowValidatingEventArgs
Provides data for the RowValidating event.
Inherited Members
Namespace: Syncfusion.UI.Xaml.TreeGrid
Assembly: Syncfusion.Grid.WinUI.dll
Syntax
public class TreeGridRowValidatingEventArgs : RowValidatingEventArgs
Constructors
TreeGridRowValidatingEventArgs(Object, Int32, Dictionary<String, String>, Object, TreeNode)
Initializes a new instance of TreeGridRowValidatingEventArgs class.
Declaration
public TreeGridRowValidatingEventArgs(object rowData, int rowIndex, Dictionary<string, string> errorMessages, object originalSource, TreeNode treeNode)
Parameters
Type | Name | Description |
---|---|---|
System.Object | rowData | The corresponding row data. |
System.Int32 | rowIndex | The corresponding row index. |
System.Collections.Generic.Dictionary<System.String, System.String> | errorMessages | The error message. |
System.Object | originalSource | The source. |
TreeNode | treeNode | The Tree node. |
Properties
Node
Gets the TreeNode triggered this event.
Declaration
public TreeNode Node { get; }
Property Value
Type | Description |
---|---|
TreeNode | The TreeNode which triggered this event. |