SubLib.Core.Search.SubtitleSearchResults.SubtitleSearchResults C# (CSharp) Method

SubtitleSearchResults() public method

Creates a new instance of the SubtitleSearchResults class.
public SubtitleSearchResults ( int subtitle, SubtitleTextType textType, int index, int length ) : SubLib.Core.Domain
subtitle int The zero-based number of the subtitle where the text was found.
textType SubtitleTextType The type of text content where the text was found.
index int The zero-based position where the text was found, within a subtitle.
length int The length of the found text.
return SubLib.Core.Domain
	public SubtitleSearchResults (int subtitle, SubtitleTextType textType, int index, int length) {
		this.subtitle = subtitle;
		this.textType = textType;
		this.index = index;
		this.length = length;
	}
SubtitleSearchResults