Tomboy.TaskManager.TaskList.StartDeleted C# (CSharp) 메소드

StartDeleted() 공개 메소드

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

            return false;
        }