Method LoadFile
- Namespace
- Alternet.Editor.TextSource
- Assembly
- Alternet.Editor.v9.dll
LoadFile(string)
Loads the contents of the specified file.
public virtual bool LoadFile(string fileName)
Parameters
fileName
stringName of file to load text.
Returns
- bool
True is succeed; otherwise false.
LoadFile(string, Encoding)
Loads the contents of the specified file with specified encoding.
public virtual bool LoadFile(string fileName, Encoding encoding)
Parameters
fileName
stringName of file to load text.
encoding
EncodingSpecifies the character encoding to use.
Returns
- bool
True is succeed; otherwise false.
LoadFile(string, IStringImport)
Loads content from the given file with specified importer.
public virtual bool LoadFile(string fileName, IStringImport importer)
Parameters
fileName
stringName of file to load content.
importer
IStringImportSpecifies importer to load content.
Returns
- bool
True is succeed; otherwise false.
LoadFile(string, IStringImport, Encoding)
Loads content from the given file with specified importer and specific encoding.
public virtual bool LoadFile(string fileName, IStringImport importer, Encoding encoding)
Parameters
fileName
stringName of file to load content.
importer
IStringImportSpecifies importer to load content.
encoding
EncodingSpecifies the character encoding to use.
Returns
- bool
True is succeed; otherwise false.