Class QueryCellValueInfoEventArgs
Provides information about the GetCellValueEventHandler event.
Inheritance
Inherited Members
Namespace: Syncfusion.Windows.Forms.Tools.MultiColumnTreeView
Assembly: Syncfusion.Tools.Windows.dll
Syntax
public class QueryCellValueInfoEventArgs : SyncfusionHandledEventArgs
Remarks
The Node property provides the details of current object. The Column property indicates the current instance of TreeColumnAdv. The Data returns the current object values. Set the Handled property to true for the changes to be accepted.
Constructors
QueryCellValueInfoEventArgs(Object, TreeColumnAdv)
Initialize a new instance of the
Declaration
public QueryCellValueInfoEventArgs(object node, TreeColumnAdv treeColumn)
Parameters
Type | Name | Description |
---|---|---|
System.Object | node | Current Buisness Object |
TreeColumnAdv | treeColumn | Current Column |
Properties
Column
Gets the current instance of TreeColumnAdv.
Declaration
public TreeColumnAdv Column { get; }
Property Value
Type |
---|
TreeColumnAdv |
Remarks
Use this property to get the current instance of TreeColumnAdv.
Data
Gets or Sets the data of current TreeNodeAdv or TreeNodeAdvSubItem.
Declaration
public object Data { get; set; }
Property Value
Type |
---|
System.Object |
Remarks
Initially this property is set to a null. Use this property to supply data for the current cell.
Node
Gets an current instance of underlying DataSource.
Declaration
public object Node { get; }
Property Value
Type |
---|
System.Object |
Remarks
To access the current instance of the object, Node property should be type casted to the type of user defined data.