# show 메서드

#### 메서드 <a href="#show-fang-fa-fang-fa" id="show-fang-fa-fang-fa"></a>

Cell.show()

#### 설명 <a href="#show-fang-fa-miao-shu" id="show-fang-fa-miao-shu"></a>

셀을 표시합니다. 페이지의 숨겨진 셀을 표시하여 셀의 값, 유형 등을 표시합니다. hide 방법과는 달리 실제 요구 사항에 따라 사용할 수 있습니다.

#### **매개 변수**  <a href="#show-fang-fa-can-shu-shuo-ming" id="show-fang-fa-can-shu-shuo-ming"></a>

없

#### **반환값**  <a href="#show-fang-fa-fan-hui-zhi" id="show-fang-fa-fan-hui-zhi"></a>

없음&#x20;

#### 예제 <a href="#show-fang-fa-shi-li" id="show-fang-fa-shi-li"></a>

다음 예제 코드에서는 show 메서드를 통해 지정된 셀(button)을 표시합니다.

```
// 현재 페이지 가져오기
var page = Forguncy.Page;
//현재 페이지에서 버튼이라는 이름의 셀을 가져옵니다.
var cell = page.getCell("button");
//이 셀의 값을 표시
var cellShow = cell.show();
```

#### Forguncy 사용 예제

※참고 : show와 hide는 한 세트이므로 같은 예제가 구성되어 있습니다.

1. 페이지를 한 개 생성하고, 아무 유형이나 선택해 셀을 하나 생성합니다. 이후 좌측상단의 Cell Name에 ‘myCell’이라고 입력해 줍니다.

<figure><img src="https://forguncy-korea.github.io/images/forguncy5/ex-ss_cell-hide01.png" alt=""><figcaption></figcaption></figure>

2\. 버튼을 생성하여 아래와 같이 “자바스크립트로 직접 프로그래밍하기” 명령을 생성하고, 코드를 입력합니다.<br>

<figure><img src="https://forguncy-korea.github.io/images/forguncy5/ex-ss_cell-hide02.png" alt=""><figcaption></figcaption></figure>

3\. 또 다른 버튼을 추가로 생성하여 아래와 같이 “자바스크립트로 직접 프로그래밍하기” 명령을 생성하고, 코드를 입력합니다.<br>

<figure><img src="https://forguncy-korea.github.io/images/forguncy5/ex-ss_cell-hide03.png" alt=""><figcaption></figcaption></figure>

4\. 해당 프로젝트를 실행하면 작동하는 Cell의 UI로 활성화되어 있음을 알 수 있습니다.\
이후 ‘Hide 버튼’을 클릭하면 해당 셀이 숨기기 처리되고, ‘Show 버튼’을 클릭하면 보이기 처리됩니다.

![](https://forguncy-korea.github.io/images/forguncy5/ex-ss_cell-hide04.gif)

<br>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://doc.forguncy.co.kr/command/javascriptprogramming/javascript-api/class/cellclass/show.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
