TdxDockingResizeStyle Enum
Enumerates panel resize styles.
Declaration
TdxDockingResizeStyle = (
drsPattern,
drsLine,
drsUpdate
);
Members
Name | Description |
---|---|
drsPattern
|
A panel draws a pattern that indicates the panel’s new size. The current docking controller‘s SelectionBrush property specifies the pattern’s brush. The panel changes its size only when a user releases the left mouse button. |
drsLine
|
A panel draws a black resize bar that indicates the panel’s new size. The panel changes its size only when a user releases the left mouse button. |
drsUpdate
|
A panel changes its size when a user resizes the panel. The docking manager‘s OnCustomDrawResizingSelection event and the panel’s OnCustomDrawResizingSelection event do not occur. |
Remarks
The following API members reference the TdxDockingResizeStyle type:
- A docking manager’s ResizeStyle property
- A docking controller’s ResizeStyle function
See Also