VitNX_DockSplitter.Move Method

public void Move( 
Point difference 
)
This language is not supported or no code example is available.

Parameters

difference
Point

public void Move(Point difference)
 {
     switch (_splitterType)
     {
         case VitNX_SplitterType.Left:
             _control.Width += difference.X;
             break;
 
         case VitNX_SplitterType.Right:
             _control.Width -= difference.X;
             break;
 
         case VitNX_SplitterType.Top:
             _control.Height += difference.Y;
             break;
 
         case VitNX_SplitterType.Bottom:
             _control.Height -= difference.Y;
             break;
     }
     UpdateBounds();
 }
					
This language is not supported or no code example is available.

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

.NET Core

Supported in: 5.0+, 6.0+

In this article

Definition