Vcl.ExtCtrls.TSplitter.ResizeStyle

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ResizeStyle: TResizeStyle read FResizeStyle write FResizeStyle

C++

__property TResizeStyle ResizeStyle = {read=FResizeStyle, write=FResizeStyle, default=3};

Properties

Type Visibility Source Unit Parent
property published
Vcl.ExtCtrls.pas
Vcl.ExtCtrls.hpp
Vcl.ExtCtrls TSplitter

Description

Specifies the effect of moving the splitter.

Use ResizeStyle to determine what happens when the user moves the splitter with the mouse.

ResizeStyle can have one of the values in the following table:



Value Meaning

rsNone

Moving the splitter with the mouse has no effect.

rsLine

A line is drawn indicating the new position of the splitter that would result if the user released the mouse at the current position. The splitter does not actually move and no controls are resized.

rsUpdate

The control against which the splitter is aligned is resized based on the current mouse position, and the splitter is moved to that position.

rsPattern

A pattern is drawn indicating the new position of the splitter that would result if the user released the mouse at the current position. The splitter does not actually move and no controls are resized. This is the default value for ResizeStyle.



See Also