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}{signature:
}
Signature
vb.net
vb.net
Public Function Create() As Document
{signature}
{returns}A new document based on the Normal style.{returns}
{exceptions}
{exception:System.Exception}Thrown if an error occurs creating the document.{exception}
{remarks}MS Word equivalent: File > New... > Blank Document

{remarks}
{example}{code:csharp|title=C#}
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} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

Dim doc As Document = app.Create()
{code} {example}