ABB.Swum.WordData.PCKimmoPartOfSpeechData.IsEventWord C# (CSharp) Method

IsEventWord() public method

Indicates whether the given word relates generally to the execution of an event, e.g. start, begin, finish, int.
public IsEventWord ( string word ) : bool
word string The word to test.
return bool
        public override bool IsEventWord(string word)
        {
            return EventWords.Contains(word.ToLower());
        }