# 편집기의 Aura Component 활용하기

### Component 직접 생성

버튼 외의 다른 위치에서 라인 아이템 편집기를 호출하려면, Aura Component인 `<SBLI:LineItemConfigurator />`를 사용하면 됩니다.

{% hint style="warning" %}
현재는 Aura Component만 제공됩니다.
{% endhint %}

빌더에서 라인 아이템 편집기 버튼을 생성하면, 아래와 같은 Aura Component가 생성됩니다. 버튼에 연결된 편집기를 더 커스터마이징하고 싶다면, 버튼이 호출하고 있는 Aura Component를 수정하면 됩니다.

```html
<aura:component implements="force:lightningQuickActionWithoutHeader,force:hasRecordId" >   
    <SBLI:LineItemConfigurator builderId="XXX..." recordId="{!v.recordId}" />
</aura:component>
```

#### Aura Component 속성

<table><thead><tr><th width="131">속성</th><th width="496.33333333333326">설명</th><th>필수</th></tr></thead><tbody><tr><td><strong>builderId</strong></td><td>빌더의 레코드 ID 입니다.</td><td><mark style="color:red;">✔️</mark></td></tr><tr><td><strong>recordId</strong></td><td>대상 빌더의 부모 레코드 ID입니다.</td><td><mark style="color:red;">✔️</mark></td></tr></tbody></table>


---

# 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://help.smallbuilder.com/ko/smallbuilder-line-items/use-cases/utilizing-the-editors-aura-component.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.
