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

Syntax:

GetNotePositionsArray(Array As Variant)
Parameters: Array Array with the column positions of the note data to be exported.


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

' initialize wizard
[...]

If (Wiz.Show) Then
	Call Wiz.GetNotePositionsArray(AryNotesPos)
	' 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