EditRunIntervalWindow.findTypes C# (CSharp) Method

findTypes() protected method

protected findTypes ( Event, myEvent ) : string[]
myEvent Event,
return string[]
    protected override string[] findTypes(Event myEvent)
    {
        //type cannot change on run interval
        combo_eventType.Sensitive=false;

        string [] myTypes;
        myTypes = SqliteRunIntervalType.SelectRunIntervalTypes("", true); //don't show allRunsName row, only select name
        return myTypes;
    }