¤ tieLabelF
Types
tieLabelF :: Orientation -> Alignment -> String -> F a b -> F a b
Synopsis
tieLabelF orient align text fudget
data Orientation = Above | Below | RightOf | LeftOf
type Alignment = Double
Description
tieLabelF
is used to attach a label to a fudget.
Input
passed to the contained fudget
Output
passed out from the contained fudget
Arguments
orient :: Orientation
- where to place the label relative to the fudget.
align :: Alignment
- how the label is aligned in the available space.
text :: String
- The label.
fudget :: F a b
- The fudget to which the label is attached.
See Also
labAboveF,
labBelowF,
labRightOfF,
labLeftOfF.