Type alias AutoResizeOptions

AutoResizeOptions: {
    height?: boolean;
    horizontal?: boolean;
    vertical?: boolean;
    width?: boolean;
}

Type declaration

  • Optional height?: boolean

    If true, the view's height will grow and shrink together with the window. false by default.

  • Optional horizontal?: boolean

    If true, the view's x position and width will grow and shrink proportionally with the window. false by default.

  • Optional vertical?: boolean

    If true, the view's y position and height will grow and shrink proportionally with the window. false by default.

  • Optional width?: boolean

    If true, the view's width will grow and shrink together with the window. false by default.

Generated using TypeDoc