MSI.ViewGetColumnInfo

number MSI.ViewGetColumnInfo ( 

number hView,

number ColumnInfo )

Description

Calls the MsiViewGetColumnInfo function that returns a record containing column names or definitions.

Note:  This action returns a handle that should be closed using MSI.CloseHandle.

Parameters

hView

(number) Handle to the view from which to obtain column information.

ColumnInfo

(number) The type of information to return.

CONSTANT

VALUE

DESCRIPTION

MSICOLINFO_NAMES

0

Column names are returned.

MSICOLINFO_TYPES

1

Definitions are returned.

Returns

(number)  Handle to receive the column information data record. You can use Application.GetLastError to determine whether this action failed, and why.

See also:  Related Actions