Automation.UI.Tree.QueryParts.QueryConditionPart.SetBinaryOperator C# (CSharp) 메소드

SetBinaryOperator() 개인적인 메소드

Updates the active binary operator.
private SetBinaryOperator ( IBinaryOperator op ) : void
op IBinaryOperator The new operator.
리턴 void
        internal void SetBinaryOperator(IBinaryOperator op)
        {
            if (BinaryOperator != null)
                throw new QueryConstructionException("Cannot set operator - Another binary operator is already active");

            BinaryOperator = op;
        }