MediaQuery

[ Interface ]

interface MediaQuery {
    name: string;
    maxWidth: number;
    minWidth: number;
    maxHeight: number;
    minHeight: number;
    controlBehaviourList: controlBehaviour[] | null;
}

Properties

Name

Type

Description

name

string

The unique name of the medium

maxWidth

number

The maximum width in pixels, the Media Query

minWidth

number

The minimum width in pixels, the Media Query

maxHeight

number

The maximum height in pixels, the Media Query.

minHeight

number

The minimum height in pixels, the Media Query

controlBehaviourList

controlBehavior[], null

A list of control behaviors that defines how certain controls should behave with this media query.

MediaQuery 1:

Available from version 1.12.750