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
Wiki Markup
{description}
{excerpt}Creates and returns a new [Document|Document] based on the Normal style.{excerpt}
{signature:C#}
 public Document Create()
{signature}{signature: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#}
Document doc = app.Create();{code}
{code:vb.net|title=vb.net}
Dim doc As Document = app.Create(){code}

{example}