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

# Multi Row

```
SoftUI.formTypes.multiRow(options[]),
```

<ParamField path="options" type="array" required>
  The options of the multi row
</ParamField>

## Data required for getActualSet function

Object

## Data returned

Object | or null

## Example Usage

```javascript theme={null}
{
    optionId: 'input',
        optionName: 'input',
        optionDescription: 'new input',
        optionType: SoftUI.formTypes.multiRow([
        {
            optionId: "test1",
            optionName: "test1",
            optionDescription: "test1",
            optionType: SoftUI.formTypes.numberPicker(1, 100, false),
            getActualSet: async ({guild,user}) => {
                // Your code here
            },
            setNew: async ({guild,user,newData}) => {
                // Your code here
            }
        },
        {
            optionId: "test2",
            optionName: "test2",
            optionDescription: "test2",
            optionType: DBD.formTypes.multiSelect({"Polish": 'pl', "English": 'en', "French": 'fr'}),
            getActualSet: async ({guild,user}) => {
                // Your code here
            },
            setNew: async ({guild,user,newData}) => {
                // Your code here
            }
        },
        {
            optionId: "test3",
            optionName: "test3",
            optionDescription: "test3",
            optionType: SoftUI.formTypes.emojiPicker(false),
            getActualSet: async ({guild,user}) => {
                // Your code here
            },
            setNew: async ({guild,user,newData}) => {
                // Your code here
            }
        }
    ])
},
,
```

## Image

<Frame>
  <img src="https://mintcdn.com/assistantscenter/e0fzjuWUPc5-sSJC/images/formtypes/softui-multirow.png?fit=max&auto=format&n=e0fzjuWUPc5-sSJC&q=85&s=7fda5f8dbaa969713ed793a28caef7c6" width="2191" height="617" data-path="images/formtypes/softui-multirow.png" />
</Frame>
