IntegralHeight Property (AListBox)

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

AListBox

AListBox 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 AListBox displays partial items:

blb1IntegralHeight = lb1.IntegralHeight

The following statement sets the property value to True:

lb1.IntegralHeight=True

Applies to

AListBox

See Also

Height