Skip to content

\moveright

yex.keyword.Moveright(distance, target) #

Source code in yex/keyword/box.py
81
82
83
84
85
86
87
88
@control(
        vertical = True,
        horizontal = False,
        math = False,
        )
def Moveright(distance: yex.value.Dimen, target: yex.box.VBox):
    target.shifted_by = distance
    return target