A managed constraint represented by a set of allowed Id identifiers.

Example: used to allow only a specific set of paragraph or character styles.

  • allowed: If true, only the provided ids may be used.
  • ids: The set of allowed Id values.
interface IdSetManagedConstraint {
    allowed: boolean;
    ids: string[];
}

Hierarchy (View Summary)

Properties

Properties

allowed: boolean
ids: string[]