Tomboy.TaskManager.TaskList.StartDeleted C# (CSharp) Method

StartDeleted() public method

Returns true if the start of the TaskList was deleted.
public StartDeleted ( ) : bool
return bool
        public bool StartDeleted()
        {
            TaskListTag tag = (TaskListTag)Buffer.GetDynamicTag ("tasklist", Start);
            if (tag != this.Tag)
                return true;

            return false;
        }