#table
#table(columns as any, rows as any) as any
Vytvorí hodnotu tabuľky z columns
a rows
. Hodnotou columns
môže byť zoznam názvov stĺpcov, typ tabuľky, počet stĺpcov alebo hodnota null. Hodnota rows
je zoznam zoznamov, kde každý prvok obsahuje hodnoty stĺpca pre jeden riadok.
Vytvorte prázdnu tabuľku.
používania
#table({}, {})
výstupu
#table({}, {})
Vytvorte tabuľku odvodením počtu stĺpcov z prvého riadka.
používania
#table(null, {{"Betty", 90.3}, {"Carl", 89.5}})
výstupu
#table({"Column1", "Column2"}, {{"Betty", 90.3}, {"Carl", 89.5}})
Vytvorte tabuľku zadaním počtu stĺpcov.
používania
#table(2, {{"Betty", 90.3}, {"Carl", 89.5}})
výstupu
#table({"Column1", "Column2"}, {{"Betty", 90.3}, {"Carl", 89.5}})
Vytvorte tabuľku zadaním zoznamu názvov stĺpcov.
používania
#table({"Name", "Score"}, {{"Betty", 90.3}, {"Carl", 89.5}})
výstupu
#table({"Name", "Score"}, {{"Betty", 90.3}, {"Carl", 89.5}})
Vytvorte tabuľku s explicitným typom.
používania
#table(type table [Name = text, Score = number], {{"Betty", 90.3}, {"Carl", 89.5}})
výstupu
#table(type table [Name = text, Score = number], {{"Betty", 90.3}, {"Carl", 89.5}})