Returns the array of column positions of the hotkey data to be exported.

Syntax:

GetHotkeyPositionsArray(Array As Variant)
Parameters: Array Array with the column positions of the hotkeys to be exported.

Example:
Dim AryHotkeys() As Variant
Dim Wiz As New ExportWizard

' initialize wizard
[...]

If (Wiz.Show) Then
	Call Wiz.GetHotkeyPositionsArray(AryHotkeys)
	' more actions
	[...]
End If

Remarks: The column order starts with the position number 1.

The parameter array has to be declared as an empty dynamic array.

See also:

Class ExportWizard


Last Updated: 07/26/05