Table of Contents

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

delta int

The amount the splitter was moved.

leftColumnWidth int

The new width of the left column.

rightColumnWidth int

The 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

int

LeftColumnWidth

Gets the new width of the column to the left of the splitter.

public int LeftColumnWidth { get; }

Property Value

int

RightColumnWidth

Gets the new width of the column to the right of the splitter.

public int RightColumnWidth { get; }

Property Value

int