RichEditExtension.Open Method
Name | Parameters | Description |
---|---|---|
Open(RichEditDocumentInfo) | documentInfo | Opens the specified document. |
Open(String) | filePath | Opens the specified document. |
Open(String, RichEditDocumentInfo) static | extensionName, documentInfo | Opens the specified document. |
Open(String, DocumentFormat) | filePath, format | Opens the specified document. |
Open(String, DocumentFormat, Func<Byte[]>) | uniqueDocumentID, format, contentAccessorByByte | Opens a document specified by an array of bytes. |
Open(String, DocumentFormat, Func<Stream>) | uniqueDocumentID, format, contentAccessorByStream | Opens a document specified by a stream. |
Open(String, Func<Byte[]>) | uniqueDocumentID, contentAccessorByByte | Opens a document specified by an array of bytes. |
Open(String, Func<Stream>) | uniqueDocumentID, contentAccessorByStream | Opens a document specified by a stream. |
Open(String, String) static | extensionName, filePath | Opens the specified document. |
Open(String, String, DocumentFormat) static | extensionName, filePath, format | Opens the specified document. |
Open(String, String, DocumentFormat, Func<Byte[]>) static | extensionName, uniqueDocumentID, format, contentAccessorByBytes | Opens a document specified by an array of bytes. |
Open(String, String, DocumentFormat, Func<Stream>) static | extensionName, uniqueDocumentID, format, contentAccessorByStream | Opens a document specified by a stream. |
Feedback