Class AutoSplitJoinSettings
Encapsulates the settings used for auto split/join supported pre-translation.
Syntax
public class AutoSplitJoinSettings
Properties
MaxNumberOfSegmentsToJoin
Allow memoQ to join more than two segments: To get a better match, memoQ will join two segments and stop there. If the document is too fragmented, you can allow memoQ to join more segments, if it can get a much better match that way.
Declaration
public int MaxNumberOfSegmentsToJoin { get; set; }
MinMatchImprovement
If memoQ is allowed to join more than 2 segments: Normally, it will join one more segment if that makes the match at least 10 percent better. To change this improvement condition, change this member's value.
Declaration
public int MinMatchImprovement { get; set; }
MinSegmentLength
Prevent segments from fragmentation: Normally, memoQ does not split one or two words from a segment. To set the number of words memoQ can split: Change this member's value.
Declaration
public int MinSegmentLength { get; set; }