Skip to content

\moveleft

yex.keyword.Moveleft(distance, target) #

Source code in yex/keyword/box.py
72
73
74
75
76
77
78
79
@control(
        vertical = True,
        horizontal = False,
        math = False,
        )
def Moveleft(distance: yex.value.Dimen, target: yex.box.VBox):
    target.shifted_by = -distance
    return target