SizeHint

public enum SizeHint : Int32

Used to set the width & height properties of a webview

  • Width and Height are the default size.

    Declaration

    Swift

    case None = 0
  • Window size cannot be changed by the user.

    Declaration

    Swift

    case Fixed = 1
  • Min

    Width and height are the minimum bounds.

    Declaration

    Swift

    case Min = 2
  • Max

    Width and height are the maximum bounds.

    Declaration

    Swift

    case Max = 3