Vcl.ExtCtrls.TResizeStyle

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TResizeStyle = (rsNone, rsLine, rsUpdate, rsPattern);

C++

enum DECLSPEC_DENUM TResizeStyle : unsigned char { rsNone, rsLine, rsUpdate, rsPattern };

Properties

Type Visibility Source Unit Parent
enum public
Vcl.ExtCtrls.pas
Vcl.ExtCtrls.hpp
Vcl.ExtCtrls Vcl.ExtCtrls

Description

Specifies a set of resizing styles for TSplitter.

TResizeStyle is a set of resizing styles for the TSplitter component.

Item 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