Class HorizontalSplitterMovedEventArgs
- Namespace
- SharpConsoleUI.Controls
- Assembly
- SharpConsoleUI.dll
Provides data for the SplitterMoved event.
public class HorizontalSplitterMovedEventArgs : EventArgs
- Inheritance
-
HorizontalSplitterMovedEventArgs
- Inherited Members
- Extension Methods
Constructors
HorizontalSplitterMovedEventArgs(int, int, int)
Initializes a new instance of the HorizontalSplitterMovedEventArgs class.
public HorizontalSplitterMovedEventArgs(int delta, int aboveControlHeight, int belowControlHeight)
Parameters
deltaintThe amount the splitter was moved (positive = down).
aboveControlHeightintThe new height of the control above the splitter.
belowControlHeightintThe new height of the control below the splitter.
Properties
AboveControlHeight
Gets the new height of the control above the splitter.
public int AboveControlHeight { get; }
Property Value
BelowControlHeight
Gets the new height of the control below the splitter.
public int BelowControlHeight { get; }
Property Value
Delta
Gets the amount the splitter was moved (positive = down, negative = up).
public int Delta { get; }