mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 11:12:36 +01:00
18 lines
332 B
C#
18 lines
332 B
C#
namespace Nikse.SubtitleEdit.Core.Enums
|
|
{
|
|
public enum SubtitleSortCriteria
|
|
{
|
|
Number,
|
|
StartTime,
|
|
EndTime,
|
|
Duration,
|
|
Text,
|
|
TextMaxLineLength,
|
|
TextTotalLength,
|
|
TextNumberOfLines,
|
|
TextCharactersPerSeconds,
|
|
WordsPerMinute,
|
|
Style,
|
|
}
|
|
}
|