Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Description

Excerpt

Creates and returns a new Document based on the Normal style.

Signature
C#
C#
 public Document Create()
Signature
vb.net
vb.net
Public Function Create() As Document
Returns

A new document based on the Normal style.

Exceptions
Exception
System.Exception
System.Exception

Thrown if an error occurs creating the document.

Remarks

MS Word equivalent: File > New... > Blank Document

Example
Code Block
csharp
csharp
titleC#
Document doc = app.Create();
Code Block
vb.net
vb.net
titlevb.net
Dim doc As Document = app.Create()