Spread 8.0 Documentation
TypeNumberMax Property
Support Options
ActiveX Reference > ActiveX Properties > TypeNumberMax Property

Glossary Item Box

TypeNumberMax Property


See Also    DLL    Example

Applies To

fpSpread control

Description

Sets or returns the maximum value allowed in a number cell. This property is available at run time only.

Syntax

C++

double CSpreadSheet::GetTypeNumberMax( );
void CSpreadSheet::SetTypeNumberMax(double value);

Visual Basic

[form.]fpSpread.TypeNumberMax[ = value#]

Remarks

The default value for the TypeNumberMax property is 9,999,999.99. The largest recommended value for the TypeNumberMax property is 99,999,999,999,999.

The value you set for the TypeNumberMax property is the maximum value the control allows the user to type or paste into the specified cell. If the user tries to type or paste a value greater than the value specified by the TypeNumberMax property, the control beeps (if the NoBeep property is set to False) and the user is not allowed to type the value.

Values larger than the specified maximum value can still be added to the cell in code at run time or from a database; when they are added in code or from a database, the value is allowed in the cell. However, the control changes those values to be zero the next time the cell is in edit mode. If the cell leaves edit mode with no change to the value, though, the control changes the value back to the invalid value.

To use the TypeNumberMax property, specify the sheet with which you want to work by setting the Sheet property. Then specify the cell or cells to which to apply the property, as described in Using Column and Row Properties. Once you set the TypeNumberMax property for a cell or cells, any subsequent number cells you create will use the same TypeNumberMax setting unless you reset it for those cells.

The TypeNumberMax property does not have an effect unless the CellType property is set to 13 (Number) for the specified cell or cells.

Specify the minimum value allowed in the cell by setting the TypeNumberMin property.

You can have the number cell display a spin button that lets users increment the value to the minimum or maximum value allowed in the cell. To have the cell display a spin button, set the TypeSpin property for the cell to True. The spin button can wrap the value from the maximum to the minimum or vice versa if you set the TypeSpinWrap property to True. You can specify by how many increments the value changes when the user presses the spin button by setting the TypeSpinInc property.

Spread Designer

Choose the Cell menu, the Cell Type menu, the Number menu, and then the Settings tab, and then type a value in the Max Value edit box in the Cell Type Settings dialog box.

Data Type

Double

See Also

Creating and Customizing a Number Cell

CellType, NoBeep, Sheet, TypeNumberDecimal, TypeNumberDecPlaces, TypeNumberLeadingZero, TypeNumberMin, TypeNumberNegStyle, TypeNumberSeparator, TypeNumberShowSep, TypeSpin, TypeSpinInc, TypeSpinWrap properties

DLL Correspondence

SSSetTypeNumber, SSSetTypeNumberEx functions

Copyright © GrapeCity, inc. All rights reserved.