List.DurationsList.Durations
構文Syntax
List.Durations(start as duration, count as number, step as duration) as list
バージョン情報About
start
から始まり、指定された duration
step
ずつインクリメントされる count
個の duration
値のリストを返します。Returns a list of count
duration
values, starting at start
and incremented by the given duration
step
.
例Example
1 時間から始まり、1 時間ずつ増分される 5 個の値のリストを作成します。Create a list of 5 values starting 1 hour and incrementing by an hour.
List.Durations(#duration(0, 1, 0, 0), 5, #duration(0, 1, 0, 0))
01:00:0001:00:00 |
02:00:0002:00:00 |
03:00:0003:00:00 |
04:00:0004:00:00 |
05:00:0005:00:00 |