[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Gets the preferred height and width for the control used during auto-sizing.
Source position: forms.pp line 330
protected procedure TCustomFrame.CalculatePreferredSize( |
var PreferredWidth: Integer; |
var PreferredHeight: Integer; |
WithThemeSpace: Boolean |
); override; |
PreferredWidth |
|
Preferred width for the control. |
PreferredHeight |
|
Preferred height for the control. |
WithThemeSpace |
|
True if additional space is reserved in the width or height for theme details. |
CalculatePreferredSize is an overridden method in TCustomFrame. It ensures that the inherited method is not called when the frame is an un-parented component and visible on the form designer. This allows the dimensions to be freely resized on the design surface. Values in the PreferredWidth, PreferredHeight, and WithThemeSpace arguments are not modified at design-time.
If the frame has an Owner (parent form) at run-time, the inherited method is called to get the values used in the LCL auto-sizing algorithms.
|
Override this method to return a different preferred height and/or width for auto-sizing. |
Version 4.0 | Generated 2025-05-03 | Home |