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

...

Introducedin
4.1.0.1322

...

4.1.0.1322
Description

Excerpt

The extension that should be used when saving this template; based on the input file.

Signature
C#
C#
public String SaveExtension { get; }
{signature}
{signature:
}
Signature
vb.net
vb.net
Public ReadOnly Property SaveExtension() As [String]
{signature}
{remarks}
The extension does not include the dot, such as 
Remarks

The extension does not include the dot, such as "docx"

or

"dotm".

Until

a

file

is

opened

this

will

be

null.

{remarks} {example} {code:csharp|title=C#}

Example
Code Block
csharp
csharp
titleC#

wordTemplate.Save("output." + wordTemplate.SaveExtension);
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

wordTemplate.Save("output." & wordTemplate.SaveExtension);
{code} {example}