Replaces the document with the content of an external file.

Namespace: BlueCieloECM.InnoCielo.Meridian.Client
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
public void ImportFile(
	IWin32Window owner,
	bool showDialog,
	string filePath,
	string dialogTitle
)
Visual Basic
Public Sub ImportFile ( _
	owner As IWin32Window, _
	showDialog As Boolean, _
	filePath As String, _
	dialogTitle As String _
)
Visual C++
public:
void ImportFile(
	IWin32Window^ owner, 
	bool showDialog, 
	String^ filePath, 
	String^ dialogTitle
)

Parameters

owner
Type: System.Windows.Forms..::..IWin32Window
Any object that implements the IWin32Window interface that represents the top-level window that will own the modal dialog box.
showDialog
Type: System..::..Boolean
A value indicating whether to show a dialog box.
filePath
Type: System..::..String
The file path to import content from. If nullNothingnullptra null reference (Nothing in Visual Basic), then the File Open dialog will be shown.
dialogTitle
Type: System..::..String
The title of the dialog box.

See Also