Algebra.QL.Form.Type.BaseType.IsChildOf C# (CSharp) 메소드

IsChildOf() 공개 메소드

public IsChildOf ( IFormType other ) : bool
other IFormType
리턴 bool
        public bool IsChildOf(IFormType other)
        {
            if (SuperType != null && (SuperType.Equals(other) || SuperType.IsChildOf(other)))
            {
                return true;
            }

            return false;
        }