InsertFromFile Method (Selection Object)¶
Inserts the contents of the specified file at the cursor position. Supported on EmEditor Professional Version 4.00 or later.¶
[JavaScript]¶
document.selection.InsertFromFile( strFileName, nEncoding, nFlags );
[VBScript]¶
document.selection.InsertFromFile strFileName, nEncoding, nFlags
strFileName
Specifies the full path and name of the file to be opened.
nEncoding
Selects from the[Encoding Constants](../const/constencoding),
or specify any code page used in the Windows Operating System.
nFlags
Specifies a combination of the following values:
| | |
| --- | --- |
| eeOpenDetectUnicode | Detects Unicode signature (BOM). |
| eeOpenDetectUTF8 | Detects UTF-8. |
| eeOpenDetectCharset | Detects HTML/XML Charset. |
| eeOpenDetectAll | Detects all encodings. |
Version¶