-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add translatable document types enum
- Loading branch information
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace Riverside.Markup.InteropServices | ||
{ | ||
/// <summary> | ||
/// This enumeration defines the different types of documents that can be translated into Rosetta. | ||
/// </summary> | ||
public enum DocumentTypes | ||
{ | ||
/// <summary> | ||
/// HyperText Markup Language document. | ||
/// </summary> | ||
HyperText, | ||
|
||
/// <summary> | ||
/// Microsoft Word document. | ||
/// </summary> | ||
Word, | ||
|
||
/// <summary> | ||
/// Portable Document Format. | ||
/// </summary> | ||
PortableDocument, | ||
|
||
/// <summary> | ||
/// Rich Text Format document. | ||
/// </summary> | ||
RichText, | ||
|
||
/// <summary> | ||
/// Markdown document. | ||
/// </summary> | ||
Markdown, | ||
|
||
/// <summary> | ||
/// ReStructuredText document. | ||
/// </summary> | ||
ReStructuredText, | ||
} | ||
} |