IntegralHeight Property (AComboBox)

Returns and sets a value that determines whether the object displays partial items.

Syntax

Object.IntegralHeight [ = bIntegralHeight ]

The IntegralHeight property syntax has the following parts:

 

Name

Type

Description

Object

AComboBox

AComboBox control

bIntegralHeight

Bool

A boolean expression that specifies whether the object will display partial items.

Where

bIntegralHeight can be one of the following:

 

Value

Description

True

If there is not enough vertical space to display all of an item, the item will not be displayed.

False *

If there is not enough vertical space to display all of an item, part of the vertical height of the item will be displayed.

Comments

This property can be set at design time as well as at run time.

Example

The following statement returns whether the AComboBox displays partial items:

bcb1IntegralHeight = cb1.IntegralHeight

The following statement sets so that the AComboBox does not display partial items:

cb1.IntegralHeight = TRUE

Applies to

AComboBox