AdjustmentPropertyName

public enum AdjustmentPropertyName : String, PropertyNameProtocol

Undocumented

  • The minimum value of the adjustment.

    Declaration

    Swift

    case lower = "lower"
  • The page increment of the adjustment.

    Declaration

    Swift

    case pageIncrement = "page-increment"
  • The page size of the adjustment.

    Note that the page-size is irrelevant and should be set to zero if the adjustment is used for a simple scalar value, e.g. in a GtkSpinButton.

    Declaration

    Swift

    case pageSize = "page-size"
  • The step increment of the adjustment.

    Declaration

    Swift

    case stepIncrement = "step-increment"
  • The maximum value of the adjustment.

    Note that values will be restricted by upper - page-size if the page-size property is nonzero.

    Declaration

    Swift

    case upper = "upper"
  • The value of the adjustment.

    Declaration

    Swift

    case value = "value"