Developer Function: Server Script: siteSettings.Sections
## Overview
This is the "Sections Object" of the "siteSettings object". This is a method to change the "「Section」" settings in the "「Server Script」".
## Properties
|No|Property name|Type|Change|Description|
|:--|:----------|:--|:---:|:---------------------------|
|1|Id|int|No|ID of the target section|
|2|LabelText|string|Yes|Label name of the target section|
|3|AllowExpand|bool|Yes|Specify whether to allow section folding|
|4|Expand|bool|Yes|Specify the default display|
## Usage Example 1
In the following example, the ID of the first section is set to NumA.
##### JavaScript
```
model.NumA = siteSettings.Sections[0].Id;
```
## Usage Example 2
The following example sets the LabelText (Input column) for the second section.
##### JavaScript
```
siteSettings.Sections[1].LabelText = 'Input column';
```
## Usage Example 3
The following example sets AllowExpand (allow) for the first section.
##### JavaScript
```
siteSettings.Sections[0].AllowExpand = true;
```
## Usage Example 4
The following example sets the default display (close) of the second section.
##### JavaScript
```
siteSettings.Sections[1].Expand = false;
```
## Related Information
<div id="ManualList">
<article class="s-blog_list_unit"><h2>
<h2>The specified information was not found.</h2>
<p><a href="/ja/manual">Return to top</a></p>
</article>
</div><input id="SearchTextHidden" type="hidden" value="" />