Module Values_0.SheetImageScalingConfigurationSource

Determines how the image is scaled

Sourcetype nonrec t = {
  1. scalingType : SheetImageScalingType.t option;
    (*

    The scaling option to use when fitting the image inside the container. Valid values are defined as follows: SCALE_TO_WIDTH: The image takes up the entire width of the container. The image aspect ratio is preserved. SCALE_TO_HEIGHT: The image takes up the entire height of the container. The image aspect ratio is preserved. SCALE_TO_CONTAINER: The image takes up the entire width and height of the container. The image aspect ratio is not preserved. SCALE_NONE: The image is displayed in its original size and is not scaled to the container.

    *)
}
Sourceval make : ?scalingType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t