diff --git a/docs/xml/lcl/comctrls.xml b/docs/xml/lcl/comctrls.xml
index ccdaa341a7..44f435f086 100644
--- a/docs/xml/lcl/comctrls.xml
+++ b/docs/xml/lcl/comctrls.xml
@@ -5179,9 +5179,60 @@ value is calculated.
+Height is a published Integer property in
+TTabSheet, and contains the height in pixels for the visible area
+on the tab sheet. It reflects the height for the parent page control minus the
+space needed to display the captioned tab for the tab sheet and its borders.
+
+The value in Height is not stored in the LCL component streaming mechanism,
+and changing the value in Height has no effect. The origin (Left, Top) and
+dimensions (Width, Height) for the tab sheet are determined when the parent
+control (TPageControl) is resized. Height always contains the number of
+vertical pixels in the visibile area on the parent control.
+
+Place a TScrollBox control (aligned to alClient) on the tab sheet to provide a
+container for scrollable content.
+
+Left is a published Integer property in
+TTabSheet. It contains the horizontal coordinate for the tab sheet
+within the visible area for the parent page control.
+
+The value in Left is not stored in the LCL component streaming mechanism,
+and changing the value in Left has no effect. The origin (Left, Top) and
+dimensions (Width, Height) for the tab sheet are determined when the parent
+control (TPageControl) is resized. Left is always set to 0 (zero).
+
+Top is a published Integer property in
+TTabSheet. It contains the vertical coordinate for the tab sheet
+within the visible area for the parent page control.
+
+The value in Top is not stored in the LCL component streaming mechanism,
+and changing the value in Top has no effect. The origin (Left, Top) and
+dimensions (Width, Height) for the tab sheet are determined when the parent
+control (TPageControl) is resized. Top is always set to 0 (zero).
+
+Width is a published Integer property in
+TTabSheet, and contains the width in pixels for the visible area
+on the tab sheet. It reflects the width for the parent page control minus the
+space needed to display its borders.
+
+The value in Width is not stored in the LCL component streaming mechanism,
+and changing the value in Width has no effect. The origin (Left, Top) and
+dimensions (Width, Height) for the tab sheet are determined when the parent
+control (TPageControl) is resized. Width always contains the number of
+horizontal pixels in the visibile area on the parent control.
+
+Place a TScrollBox control (aligned to alClient) on the tab sheet to provide a
+container for scrollable content.
+