#table
語法
#table(columns as any, rows as any) as any
關於
根據 columns
和 rows
建立資料表值。 columns
值可為資料行名稱的清單、資料表類型、資料行數目或 null。 rows
值是清單的清單,其中每個元素都包含單一資料列的資料行值。
範例 1
建立空白資料表。
使用方式
#table({}, {})
輸出
#table({}, {})
範例 2
藉由從第一個資料列推斷資料行數目來建立資料表。
使用方式
#table(null, {{"Betty", 90.3}, {"Carl", 89.5}})
輸出
#table({"Column1", "Column2"}, {{"Betty", 90.3}, {"Carl", 89.5}})
範例 3
藉由指定資料行數目來建立資料表。
使用方式
#table(2, {{"Betty", 90.3}, {"Carl", 89.5}})
輸出
#table({"Column1", "Column2"}, {{"Betty", 90.3}, {"Carl", 89.5}})
範例 4
藉由提供資料行名稱的清單來建立資料表。
使用方式
#table({"Name", "Score"}, {{"Betty", 90.3}, {"Carl", 89.5}})
輸出
#table({"Name", "Score"}, {{"Betty", 90.3}, {"Carl", 89.5}})
範例 5
使用明確類型建立資料表。
使用方式
#table(type table [Name = text, Score = number], {{"Betty", 90.3}, {"Carl", 89.5}})
輸出
#table(type table [Name = text, Score = number], {{"Betty", 90.3}, {"Carl", 89.5}})