diff --git a/docs/xml/lcl/comctrls.xml b/docs/xml/lcl/comctrls.xml index f83896114e..e065b1ad56 100644 --- a/docs/xml/lcl/comctrls.xml +++ b/docs/xml/lcl/comctrls.xml @@ -758,19 +758,24 @@ - TTabSheet - individual page of a TPageControl; a more elaborate version of TPage - -

TTabSheet - individual page of a TPageControl; a more elaborate version of TPage

-

Contains the following features lacked by TPage:

- -
+ + TTabSheet - individual page of a TPageControl; a more elaborate version of TPage + + +

+ TTabSheet - individual page of a TPageControl; a more elaborate version of TPage +

+

Contains the following features lacked by TPage:

+ +
Multi-PageControls - HowToUseStdCtrls + HowToUseStdCtrls
@@ -3988,13 +3993,14 @@ cdsIndeterminate - + ImageIndex - + + TListColumn - an individual column in a multi-column List control @@ -4223,25 +4229,27 @@ cdsIndeterminate - + + Alignment - whether text is to be left or right justified or centered - + Whether AutoSize is to be operational - + A text string or Caption (which may be translated) to be used at the top of the column - + + MaxWidth - the maximum permissable width for the column @@ -4253,31 +4261,35 @@ cdsIndeterminate - + + MinWidth - the minimum permissable with for the column - + + Tag - a general purpose integer variable to be used in association with this column - + + Visible - whether this column can be seen - + The Width of this column - + + TListColumns - a collection of Items of type TListColumn (the columns appearing in a multi-column list) @@ -6537,8 +6549,16 @@ cdsIndeterminate - - + + TCustomUpDown - base class for TUpDown - a pair of arrow-like buttons which are used to increment or decrement some controlled variable; often attached to a scroll-bar, but can also control a digital numeric display + +

+ +

+

The control definition itself does not specify the variable upon which the buttons operate. The application programmer is responsible for supplying an event handler for OnClick to determine which button has been selected (designated btNext or btPrev) and incrementing or decrementing the variable in the control with which the UpDown is associated.

+

The amount by which the variable is changed is set by the integer property Increment with the optional multiplier Thousands (a boolean property).

+

For example the UpDown control may be used to move a slider up and down a scale by a specified amount for each click; alternatively, a number may be displayed in a text box, and clicking the buttons of the UpDown control may increment or decrement the number displayed by a specified amount.

+
@@ -6799,7 +6819,8 @@ cdsIndeterminate - + + AssociateKeyDown - protected procedure for dealing with action to be taken if an associate key (Shift, Ctrl or Alt) is pressed while the control is active @@ -6903,31 +6924,31 @@ cdsIndeterminate - + The amount by which the controlled variable is to be increased or decreased on each click - + Whether horizontal or vertical - + The Position of the UpDown control - + If True, multiply all displayed values and the Increment by 1000 - + If True, displayed control or value starts again from minimum or maximum value if clicking a button would cause incrementing or decrmenting beyond the extreme value @@ -6963,8 +6984,16 @@ cdsIndeterminate - - + + TUpDown - a pair of arrow-like buttons which are used to increment or decrement some controlled variable; often attached to a scroll-bar, but can also control a digital numeric display + +

+ +

+

The control definition itself does not specify the variable upon which the buttons operate. The application programmer is responsible for supplying an event handler for OnClick to determine which button has been selected (designated btNext or btPrev) and incrementing or decrementing the variable in the control with which the UpDown is associated.

+

The amount by which the variable is changed is set by the integer property Increment with the optional multiplier Thousands (a boolean property).

+

For example the UpDown control may be used to move a slider up and down a scale by a specified amount for each click; alternatively, a number may be displayed in a text box, and clicking the buttons of the UpDown control may increment or decrement the number displayed by a specified amount.

+
@@ -15788,6 +15817,65 @@ For the meaning of this options, see the documentation of TTreeView. IndexOfTabWithCaption - returns the index value of the tab that has the specified Caption + + + THeaderSections - a collection of Items ot type THeaderSection, the individual parts of a THeaderControl + + + + + AddItem - adds a HeaderSection to the Header at the position specified by Index + + + + + + + + + Items - the series of individual HeaderSections in the collection + + + + THeaderSection - the individual sections of a THeaderControl, each of which can be used to control its own option, selection etc + + + + + The position of the left boundary of the section + + + The position of the right boundary of the section + + + + State - whether normal, hot (ie mouse hovers over it, ready to be selected) or pressed (selected) + + + + Alignment - whether text is to be left or right justified or centered + + + Index of the image in the imagelist + + + Maximum permissable width of a section + + + Minimum permissable width of a section (default = 0) + + + The text string that is to appear in the section + + + The Width of the section that appears on the THeaderControl + + + + + OriginalIndex - index which doesn't change when the user reorders the sections + +