Module Values_0.SectionStyleSource

The options that style a section.

Sourcetype nonrec t = {
  1. height : PixelLength.t option;
    (*

    The height of a section. Heights can only be defined for header and footer sections. The default height margin is 0.5 inches.

    *)
  2. padding : Spacing.t option;
    (*

    The spacing between section content and its top, bottom, left, and right edges. There is no padding by default.

    *)
}
Sourceval make : ?height:??? -> ?padding:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PixelLength.t | `Structure of (string * [> `String of Length.t ]) list ]) 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