ComHelper class

ComHelper class

Provides methods for COM clients to load a document into Aspose.Words.

Remarks

Use the ComHelper class to load a document from a file or stream into a Document object in a COM application.

The Document class provides a default constructor to create a new document and also provides overloaded constructors to load a document from a file or stream. If you are using Aspose.Words from a .NET application, you can use all of the Document constructors directly, but if you are using Aspose.Words from a COM application, only the default Document constructor is available.

Constructors

NameDescription
ComHelper()Initializes a new instance of this class.

Methods

NameDescription
open(file_name)Allows a COM application to load a Document from a file.
open(stream)Allows a COM application to load Document from a stream.

See Also