Class TreeViewColumnResizedEventArgs
Represents the data for the resized column of the MultiColumnTreeView.
Inheritance
System.Object
System.EventArgs
TreeViewColumnResizedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Forms.Tools.MultiColumnTreeView
Assembly: Syncfusion.Tools.Windows.dll
Syntax
public class TreeViewColumnResizedEventArgs : EventArgs
Constructors
TreeViewColumnResizedEventArgs(TreeColumnAdv, Int32, Int32)
Initialize a new instance of the TreeViewColumnResizedEventArgs class.
Declaration
public TreeViewColumnResizedEventArgs(TreeColumnAdv column, int previous, int current)
Parameters
Type | Name | Description |
---|---|---|
TreeColumnAdv | column | The Tree Column. |
System.Int32 | previous | The Previous Index. |
System.Int32 | current | The Current Index. |
Properties
Column
Gets parent control.
Declaration
public TreeColumnAdv Column { get; }
Property Value
Type |
---|
TreeColumnAdv |
CurrentWidth
Gets current column width.
Declaration
public int CurrentWidth { get; }
Property Value
Type |
---|
System.Int32 |
PreviousWidth
Gets previous column width.
Declaration
public int PreviousWidth { get; }
Property Value
Type |
---|
System.Int32 |