diff --git a/components/lazcontrols/docs/spinex.xml b/components/lazcontrols/docs/spinex.xml index e8401eb7c1..08e1d4ad31 100644 --- a/components/lazcontrols/docs/spinex.xml +++ b/components/lazcontrols/docs/spinex.xml @@ -117,7 +117,6 @@ Value. - @@ -251,30 +250,6 @@ Increment property. - - -Indicates if valid values have been assigned to the MinValue and MaxValue -properties. - - -

-The return value is True when MaxValue is larger than MinValue. -IsLimited is used in the implementation of the IsOutOfLimits -method. -

-
- - - - -
- - -True when the typed value in MaxValue is larger than the typed value -in MinValue. - - - Determines if the specified value is not within the limits set in MinValue @@ -334,40 +309,6 @@ New value for the Orientation property. - -Updates members in the control when editing is completed. - -

-UpdateControl is a method used to update members in the class -instance to reflect the state for the control. It is called when a new value -is assigned to properties in the class instance. It is called when editing -has been completed using the Edit for the grouped editing control. -It is also called when the handle is allocated for the control in -InitializeWnd. -

-

-NullValueBehaviour is used to determine whether Value -is adjusted to ensure that it is in the range specified by MinValue and -MaxValue. A value other than nvbShowTextHint causes -GetLimitedValue to be called to get the adjusted Value. -

-

-No additional actions are performed in the method when a handle has not been -allocated for the control, or at design-time. -

-

-When NullValueBehaviour is set to nvbShowTextHint, an invalid -numeric value entered in Text causes Text to be set to an empty -string. This allows the TextHint for the control to be displayed. -

-

-When Value is a valid number, and in the required range, it is converted to -its String representation and assigned to the Text for the control. -

-
- -
- Implements the OnChangingEx event handler assigned to UpDown. @@ -415,6 +356,8 @@ Calls the BuddyClick method for the grouped edit control. + + Gets the class type used for Buddy in the grouped edit control. @@ -611,6 +554,30 @@ message was handled in the ancestor class. When set to False, the True when the message was handled in the method. + + +Indicates if valid values have been assigned to the MinValue and MaxValue +properties. + + +

+The return value is True when MaxValue is larger than MinValue. +IsLimited is used in the implementation of the IsOutOfLimits +method. +

+
+ + + + +
+ + +True when the typed value in MaxValue is larger than the typed value +in MinValue. + + + Ensures the incremented value is a valid number for the data type. @@ -815,6 +782,40 @@ for ANumber. Numeric value for the specified String. + +Updates members in the control when editing is completed. + +

+UpdateControl is a method used to update members in the class +instance to reflect the state for the control. It is called when a new value +is assigned to properties in the class instance. It is called when editing +has been completed using the Edit for the grouped editing control. +It is also called when the handle is allocated for the control in +InitializeWnd. +

+

+NullValueBehaviour is used to determine whether Value +is adjusted to ensure that it is in the range specified by MinValue and +MaxValue. A value other than nvbShowTextHint causes +GetLimitedValue to be called to get the adjusted Value. +

+

+No additional actions are performed in the method when a handle has not been +allocated for the control, or at design-time. +

+

+When NullValueBehaviour is set to nvbShowTextHint, an invalid +numeric value entered in Text causes Text to be set to an empty +string. This allows the TextHint for the control to be displayed. +

+

+When Value is a valid number, and in the required range, it is converted to +its String representation and assigned to the Text for the control. +

+
+ +
+ Performs actions needed when the handle is allocated for the control.