> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kasoftware.com/llms.txt
> Use this file to discover all available pages before exploring further.

# arc:setm

> 使用 arc:setm 作為 arc:set 的簡寫，用單個關鍵字執行多個屬性設定操作。

export const siteNameShort = "知行之橋";

`arc:setm` 關鍵字是 [arc:set](./op-arc-set) 的簡寫。使用它只需一個關鍵字即可執行多次設定操作。

每一行（以 `\r\n` 分隔）都是一個單獨的 set 操作。和在 Python 中一樣，可以使用三個單引號（`'''`）指定多行值。

第一個等號（`=`）將屬性名稱和值分隔開。這意味著屬性值可以包含空格。不過，前導和尾隨空格會被忽略。如範例所示，可以使用引號包含前導或尾隨空格。

## 參數

* **item**：要在其中設定屬性的物件。無需指定物件；如果未指定，則使用預設物件。

## 控制屬性

無

## 範例

使用關鍵字範圍設定聯絡人屬性：

```xml theme={null}
<arc:setm>
name = ContactName 
company = ContactCompany
address = 600 Market Street
includespace = " This string has a leading space"
</arc:setm>
```

## 另請參閱

* [arc:set](./op-arc-set)：在物件中設定屬性。
