Table of Contents

Method SaveFile

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

SaveFile(string)

Saves text content to the specific file.

public virtual bool SaveFile(string fileName)

Parameters

fileName string

Name of file to save content.

Returns

bool

True is succeed; otherwise false.

SaveFile(string, Encoding)

Saves text content to the specific file with specific encoding.

public virtual bool SaveFile(string fileName, Encoding encoding)

Parameters

fileName string

Name of file to save content.

encoding Encoding

Specifies the character encoding to use.

Returns

bool

True is succeed; otherwise false.

SaveFile(string, IStringExport)

Saves content to the given file in the specific format.

public virtual bool SaveFile(string fileName, IStringExport exporter)

Parameters

fileName string

Name of file to save content.

exporter IStringExport

Specifies exporter to save content.

Returns

bool

True is succeed; otherwise false.

SaveFile(string, IStringExport, Encoding)

Saves content to the given file in the specific format with specific encoding.

public virtual bool SaveFile(string fileName, IStringExport exporter, Encoding encoding)

Parameters

fileName string

Name of file to save content.

exporter IStringExport

Specifies exporter to save content.

encoding Encoding

Specifies the character encoding to use.

Returns

bool

True is succeed; otherwise false.