From 8c4f53f514024f10dc8bfa9cff3d2daaeba3f060 Mon Sep 17 00:00:00 2001 From: paul Date: Thu, 24 Jun 2010 09:20:20 +0000 Subject: [PATCH] docs: add more documentation regards monitors git-svn-id: trunk@26277 - --- docs/xml/lcl/forms.xml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) 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. +