C# Class SIL.CoreImpl.TsStringDiffInfo

Represents a difference detected in two TsStrings
Afficher le fichier Open project: sillsdev/FieldWorks Class Usage Examples

Méthodes publiques

Свойство Type Description
CchDeleteFromOld int
CchInsert int
IchFirstDiff int

Méthodes publiques

Méthode Description
TsStringDiffInfo ( int ichFirstDiff ) : System

Initializes a new instance of the TsStringDiffInfo class representing no change.

TsStringDiffInfo ( int ichFirstDiff, int cchInsert, int cchDeleteFromOld ) : System

Initializes a new instance of the TsStringDiffInfo class.

Method Details

TsStringDiffInfo() public méthode

Initializes a new instance of the TsStringDiffInfo class representing no change.
public TsStringDiffInfo ( int ichFirstDiff ) : System
ichFirstDiff int The character position of the first difference between /// the two TsStrings
Résultat System

TsStringDiffInfo() public méthode

Initializes a new instance of the TsStringDiffInfo class.
public TsStringDiffInfo ( int ichFirstDiff, int cchInsert, int cchDeleteFromOld ) : System
ichFirstDiff int The character position of the first difference between /// the two TsStrings
cchInsert int The number of characters that were inserted starting at the /// location of the first difference
cchDeleteFromOld int The number of characters that were deleted starting /// at the location of the first difference
Résultat System

Property Details

CchDeleteFromOld public_oe property

The number of characters that were deleted starting at the location of the first difference
public int CchDeleteFromOld
Résultat int

CchInsert public_oe property

The number of characters that were inserted starting at the location of the first difference
public int CchInsert
Résultat int

IchFirstDiff public_oe property

The character position of the first difference between the two TsStrings
public int IchFirstDiff
Résultat int