Class SplitterMovedEventArgs
- Namespace
- SharpConsoleUI.Controls
- Assembly
- SharpConsoleUI.dll
Provides data for the SplitterMoved event.
public class SplitterMovedEventArgs : EventArgs
- Inheritance
-
SplitterMovedEventArgs
- Inherited Members
Constructors
SplitterMovedEventArgs(int, int, int)
Initializes a new instance of the SplitterMovedEventArgs class.
public SplitterMovedEventArgs(int delta, int leftColumnWidth, int rightColumnWidth)
Parameters
deltaintThe amount the splitter was moved.
leftColumnWidthintThe new width of the left column.
rightColumnWidthintThe new width of the right column.
Properties
Delta
Gets the amount the splitter was moved (positive = right, negative = left).
public int Delta { get; }
Property Value
LeftColumnWidth
Gets the new width of the column to the left of the splitter.
public int LeftColumnWidth { get; }
Property Value
RightColumnWidth
Gets the new width of the column to the right of the splitter.
public int RightColumnWidth { get; }