IDocumentReaderPluginRead Method |
Reads the data from the specified stream into the
Document instance.
Namespace:
Aspose.Words
Assembly:
Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntaxvoid Read(
Stream src,
LoadOptions loadOptions,
Document document
)
Sub Read (
src As Stream,
loadOptions As LoadOptions,
document As Document
)
void Read(
Stream^ src,
LoadOptions^ loadOptions,
Document^ document
)
abstract Read :
src : Stream *
loadOptions : LoadOptions *
document : Document -> unit
Parameters
- src
- Type: System.IOStream
The source stream to read the document from. - loadOptions
- Type: Aspose.WordsLoadOptions
An additional load options to load the document. - document
- Type: Aspose.WordsDocument
The instance of the Document class to read the data to.
If the instance contains some content, it will be overriden by the data from the source stream
See Also