Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

Wiki Markup
{introducedin:4.1.0.1322

...

Description

Excerpt

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


{remarks}
{example}
{code:csharp|title=C#}
wordTemplate.Save("output." + wordTemplate.SaveExtension);
{code}
{code:vb.net
|title=vb.net
}
wordTemplate.Save("output." & wordTemplate.SaveExtension);
{code}

{example}
Signature
C#C#
}
{description}
{excerpt}
The extension that should be used when saving this template; based on the input file.
{excerpt}
{signature:C#}
public String SaveExtension { get; }
Signature
{signature}
{signature:vb.net
vb.net
}
Public ReadOnly Property SaveExtension() As [String]
Remarks
The extension does not include the dot, such as
{signature}
{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
csharpcsharp
titleC#
Code Block
vb.nettitle