翻訳済み
このページは日本語に翻訳済みです。
direction
The four directions into which content can be laid out.
Possible values are:
ltr
: Left to right.rtl
: Right to left.ttb
: Top to bottom.btt
: Bottom to top.
These values are available globally and also in the direction type's scope, so you can write either of the following two:
#stack(dir: rtl)[A][B][C]
#stack(dir: direction.rtl)[A][B][C]

定義定義これらの関数や型には、関連する定義を持たせることができます。定義にアクセスするには、対象の関数や型の名前を指定した後に、ピリオド区切りで定義名を記述します。
定義
これらの関数や型には、関連する定義を持たせることができます。定義にアクセスするには、対象の関数や型の名前を指定した後に、ピリオド区切りで定義名を記述します。
from
Returns a direction from a starting point.
例を表示
direction.from(left) \
direction.from(right) \
direction.from(top) \
direction.from(bottom)

side
to
Returns a direction from an end point.
例を表示
direction.to(left) \
direction.to(right) \
direction.to(top) \
direction.to(bottom)

side
axis
The axis this direction belongs to, either "horizontal"
or
"vertical"
.
例を表示
#ltr.axis() \
#ttb.axis()

sign
The corresponding sign, for use in calculations.
例を表示
#ltr.sign() \
#rtl.sign() \
#ttb.sign() \
#btt.sign()

start
The start point of this direction, as an alignment.
例を表示
#ltr.start() \
#rtl.start() \
#ttb.start() \
#btt.start()

end
The end point of this direction, as an alignment.
例を表示
#ltr.end() \
#rtl.end() \
#ttb.end() \
#btt.end()
