diff --git a/docs/xml/lcl/forms.xml b/docs/xml/lcl/forms.xml
index c9dac8316e..d4d0f020cb 100644
--- a/docs/xml/lcl/forms.xml
+++ b/docs/xml/lcl/forms.xml
@@ -9742,6 +9742,34 @@ Different operation systems has different preferences regards showing images in
Primary - indicates whether this monitor is primary
+
+
+ TMonitorList - a list of monitors
+
+
+
+ MonitorCount - returns a number of monitors
+
+
+
+ Monitors - provides access to the monitor list array
+
+
+
+ PrimaryMonitor - return the primary monitor of the system
+
+
+
+ Monitor - returns the monitor on which the form is mostly places (the biggest form area is placed)
+
+
+
+ TDefaultMonitor - enumerated type to specify on which monitor to place the form
+ dmDesktop - don't change the form position (use the full desktop)
+dmPrimary - place the form on the primary monitor
+dmMainForm - place the form on the same monitor as the main form. If there is no main form then use dmPrimary behavior.
+dmActiveForm - place the form on the same monitor as the current active form. If there is no active form use dmMainForm behavior.
+