protected virtual bool IsInput()
 {
     TreeNodeProperty parent = GetParent();
     if (parent == null)
     {
         return false;
     }
     return parent.IsInput();
 }
Exemplo n.º 2
0
        protected virtual bool IsInput()
        {
            TreeNodeProperty parent = this.GetParent();

            if (parent == null)
            {
                return(false);
            }
            return(parent.IsInput());
        }
Exemplo n.º 3
0
        protected virtual bool IsInput()
        {
            TreeNodeProperty property1 = GetParent();

            if (property1 == null)
            {
                return(false);
            }
            return(property1.IsInput());
        }