SILUBS.ScriptureChecks.PunctuationToken.PunctuationToken C# (CSharp) Method

PunctuationToken() public method

Initializes a new instance of the PunctuationToken class.
public PunctuationToken ( PunctuationTokenType tokenType, TextTokenSubstring tts, bool isInitial, bool isFinal ) : System
tokenType PunctuationTokenType Type of the token.
tts SILUBS.SharedScrUtils.TextTokenSubstring The TextTokenSubstring.
isInitial bool if set to true is opening quotation mark.
isFinal bool if set to true is closing quotation mark.
return System
		public PunctuationToken(PunctuationTokenType tokenType, TextTokenSubstring tts,
			bool isInitial,	bool isFinal)
		{
			TokenType = tokenType;
			Tts = tts;
			IsInitial = isInitial;
			IsFinal = isFinal;
		}

Same methods

PunctuationToken::PunctuationToken ( bool isInitial, bool isFinal, bool isParaBreak ) : System