Table of Contents

Method LoadFile

Namespace
Alternet.Editor.Wpf
Assembly
Alternet.Editor.Wpf.v9.dll

LoadFile(string)

Loads the contents of a text file into string collection.

public virtual bool LoadFile(string fileName)

Parameters

fileName string

Represents name of file on disk.

Returns

bool

True if succeed; otherwise false.

LoadFile(string, Encoding)

Loads the contents of a file into string collection.

public virtual bool LoadFile(string fileName, Encoding encoding)

Parameters

fileName string

Represents name of file on disk.

encoding Encoding

Specifies the character encoding to use.

Returns

bool

True if 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 string

Name of file to load content.

importer IStringImport

Specifies 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 string

Name of file to load content.

importer IStringImport

Specifies importer to load content.

encoding Encoding

Specifies the character encoding to use.

Returns

bool

True is succeed; otherwise false.