TmListExtend Procedure

Extends the specified list by adding empty items.

Usage

TmListExtend, tool_name, list_name 

Input Parameters

tool_name—A string specifying the unique name of a VDA Tool.

list_name—A string specifying the unique name of a list.

Keywords

NumItems—An integer specifying the number of items to add. The value of this keyword overrides the ExtendSize keyword specified in TmList.

Discussion

The list is extended in increments greater than 1 to avoid excessive copying.

This procedure defines the behavior of the TM_LIST_EXTEND method.

Example

These commands extend a list.

; Extend the list by the number specified in the ExtendSize 
; keyword of the TmList command (default: 10). 
TmListExtend, tool_name, list_name 
; Extend the list by 15 items. 
TmListExtend, tool_name, list_name, NumItems=15 

See Also

TmList, TmListSetMethod