Table of Contents

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

delta int

The amount the splitter was moved (positive = down).

aboveControlHeight int

The new height of the control above the splitter.

belowControlHeight int

The 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

int

BelowControlHeight

Gets the new height of the control below the splitter.

public int BelowControlHeight { get; }

Property Value

int

Delta

Gets the amount the splitter was moved (positive = down, negative = up).

public int Delta { get; }

Property Value

int