Share

AcDbAssocEvaluationPriority Enumeration

C++

enum AcDbAssocEvaluationPriority {
  kCannotBeEvaluatedAssocEvaluationPriority = -1000,
  kCannotDermineAssocEvaluationPriority = 0,
  kCanBeEvaluatedAssocEvaluationPriority = 1000
};

File

AcDbAssocGlobal.h

Members

Members Description
kCannotBeEvaluatedAssocEvaluationPriority Default "can not be evaluated" priority.
kCannotDermineAssocEvaluationPriority Cannot determine at this time whether the action can be evaluated.
kCanBeEvaluatedAssocEvaluationPriority Default "can be evaluated" priority.

Description

A negative priority mean that an AcDbAssocAction cannot be evaluated at this time, positive priority means that the action can be evaluated now. A higher positive priority should be evaluated before actions with lower positive priority. The negative priority means how much the action cannot be evaluated. The smaller the number, the less the action can be evaluated.

Was this information helpful?