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
vb.net
vb.net
Public ReadOnly Property SaveExtension() As [String]
Remarks

The extension does not include the dot, such as "docx" or "dotm". Until a file is opened this will be null.

Example
Code Block
csharp
csharp
titleC#
wordTemplate.Save("output." + wordTemplate.SaveExtension);
Code Block
vb.net
vb.net
titlevb.net
wordTemplate.Save("output." & wordTemplate.SaveExtension);