ITextDocumentFactoryService Interface
Represents a service that creates, loads, and disposes text documents.
Namespace: Microsoft.VisualStudio.Text
Assembly: Microsoft.VisualStudio.Text.Data (in Microsoft.VisualStudio.Text.Data.dll)
Syntax
'Declaration
Public Interface ITextDocumentFactoryService
public interface ITextDocumentFactoryService
public interface class ITextDocumentFactoryService
type ITextDocumentFactoryService = interface end
public interface ITextDocumentFactoryService
The ITextDocumentFactoryService type exposes the following members.
Methods
Name | Description | |
---|---|---|
CreateAndLoadTextDocument(String, IContentType) | Creates an ITextDocument that opens and loads the contents of the file into a new ITextBuffer. | |
CreateAndLoadTextDocument(String, IContentType, Boolean, Boolean%) | Creates an ITextDocument that opens and loads the contents of the file into a new ITextBuffer. | |
CreateAndLoadTextDocument(String, IContentType, Encoding, Boolean%) | Creates an ITextDocument that opens and loads the contents of the file into a new ITextBuffer. | |
CreateTextDocument | Creates an ITextDocument with textBuffer, which is to be saved to the file. | |
TryGetTextDocument | Retrieve an ITextDocument for the given buffer, if one exists. |
Top
Events
Name | Description | |
---|---|---|
TextDocumentCreated | Occurs when an ITextDocument is created. | |
TextDocumentDisposed | Occurs when an ITextDocument is disposed. |
Top
Remarks
This is a MEF component part, and should be imported as follows:
[Import]
ITextDocumentFactoryService factory = null;