A managed constraint that restricts allowed font sizes to a continuous range.

  • allowed: If true, restricts allowed font sizes to [min, max] (inclusive).
  • min: The minimum allowed font size (nullable).
  • max: The maximum allowed font size (nullable).
interface FontSizeRangeManagedConstraint {
    allowed: boolean;
    max: null | number;
    min: null | number;
}

Hierarchy (View Summary)

Properties

Properties

allowed: boolean
max: null | number
min: null | number