Sets if the separator group box with the separator options should be visible or not. If the "ShowSeparator" property is set to True a separator must be set.

Type Info:

ShowSeparator As Boolean
Example:
Dim Wiz As New ExportWizard
Dim Separator As String

' initialize wizard
[...]

Wiz.ShowSeparator = True
Wiz.Separator = ","

If (Wiz.Show) Then
	Separator = Wiz.Separator

	' more actions
	[...]
End If
Remarks: Write-only property.
See also:

Class ExportWizard

Last Updated: 07/26/05