Table of Contents

Class DocumentChange

Namespace
NMF.AnyText.Workspace
Assembly
NMF.AnyText.Core.dll

Represents a change to a document, including text edits, file creation, renaming, or deletion.

public class DocumentChange
Inheritance
DocumentChange
Inherited Members

Properties

CreateFile

Information for creating a new file.

public CreateFile CreateFile { get; set; }

Property Value

CreateFile

DeleteFile

Information for deleting an existing file.

public DeleteFile DeleteFile { get; set; }

Property Value

DeleteFile

RenameFile

Information for renaming an existing file.

public RenameFile RenameFile { get; set; }

Property Value

RenameFile

TextDocumentEdit

Text document edits (e.g., line insertions, deletions).

public TextDocumentEdit TextDocumentEdit { get; set; }

Property Value

TextDocumentEdit